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