From cd35139de5a164d02177fcb9a43e25f69ed7748f Mon Sep 17 00:00:00 2001 From: Denise Worthen Date: Wed, 16 Nov 2022 12:41:04 -0500 Subject: [PATCH] update cmeps with fix for mediator history files; use esmf-managed threading for cpld_bmark control and restart (was #1483); Software module updates in hpc-stack for Hera (intel, gnu) (was #1468) (#1486) * update CMEPS submodule * bmark cpld tests use esmf-managed threading by default * remove version w/o esmf-managed threading * update hera hpc stack locations: intel/gnu Co-authored-by: Brian Curtis Co-authored-by: jkbk2004 Co-authored-by: zach1221 <99902696+zach1221@users.noreply.github.com> --- CMEPS-interface/CMEPS | 2 +- modulefiles/ufs_hera.gnu.lua | 9 +- modulefiles/ufs_hera.gnu_debug.lua | 9 +- modulefiles/ufs_hera.intel.lua | 10 +- modulefiles/ufs_hera.intel_debug.lua | 10 +- tests/RegressionTests_cheyenne.gnu.log | 340 ++--- tests/RegressionTests_cheyenne.intel.log | 996 ++++++------- tests/RegressionTests_gaea.intel.log | 1637 ++++++++++----------- tests/RegressionTests_hera.gnu.log | 344 ++--- tests/RegressionTests_hera.intel.log | 1665 +++++++++++----------- tests/RegressionTests_jet.intel.log | 940 ++++++------ tests/RegressionTests_orion.intel.log | 1663 +++++++++++---------- tests/RegressionTests_wcoss2.intel.log | 792 +++++----- tests/ci/Jenkinsfile | 2 +- tests/rt.conf | 1 - tests/tests/cpld_bmark_esmfthreads_p8 | 158 -- tests/tests/cpld_bmark_p8 | 24 +- tests/tests/cpld_restart_bmark_p8 | 25 +- 18 files changed, 4173 insertions(+), 4454 deletions(-) delete mode 100644 tests/tests/cpld_bmark_esmfthreads_p8 diff --git a/CMEPS-interface/CMEPS b/CMEPS-interface/CMEPS index aabe844ed5..01decebec7 160000 --- a/CMEPS-interface/CMEPS +++ b/CMEPS-interface/CMEPS @@ -1 +1 @@ -Subproject commit aabe844ed5870d82d8c879590d14a69f06896815 +Subproject commit 01decebec7bfe676c1c6dc567834ff1e7aa3c303 diff --git a/modulefiles/ufs_hera.gnu.lua b/modulefiles/ufs_hera.gnu.lua index 0e8189a652..c0b1b6be8b 100644 --- a/modulefiles/ufs_hera.gnu.lua +++ b/modulefiles/ufs_hera.gnu.lua @@ -12,12 +12,15 @@ load("sutils") cmake_ver=os.getenv("cmake_ver") or "3.20.1" load(pathJoin("cmake", cmake_ver)) -prepend_path("MODULEPATH", "/scratch2/NCEPDEV/nwprod/hpc-stack/libs/hpc-stack/modulefiles/stack") +gnu_ver=os.getenv("gnu_ver") or "9.2.0" +load(pathJoin("gnu", gnu_ver)) -hpc_ver=os.getenv("hpc_ver") or "1.1.0" +prepend_path("MODULEPATH", "/scratch1/NCEPDEV/nems/role.epic/hpc-stack/libs/gnu-9.2/modulefiles/stack") + +hpc_ver=os.getenv("hpc_ver") or "1.2.0" load(pathJoin("hpc", hpc_ver)) -hpc_gnu_ver=os.getenv("hpc_gnu_ver") or "9.2.0" +hpc_gnu_ver=os.getenv("hpc_gnu_ver") or "9.2" load(pathJoin("hpc-gnu", hpc_gnu_ver)) hpc_mpich_ver=os.getenv("hpc_mpich_ver") or "3.3.2" diff --git a/modulefiles/ufs_hera.gnu_debug.lua b/modulefiles/ufs_hera.gnu_debug.lua index 8d294fa20a..6b29c655bb 100644 --- a/modulefiles/ufs_hera.gnu_debug.lua +++ b/modulefiles/ufs_hera.gnu_debug.lua @@ -12,12 +12,15 @@ load("sutils") cmake_ver=os.getenv("cmake_ver") or "3.20.1" load(pathJoin("cmake", cmake_ver)) -prepend_path("MODULEPATH", "/scratch2/NCEPDEV/nwprod/hpc-stack/libs/hpc-stack/modulefiles/stack") +gnu_ver=os.getenv("gnu_ver") or "9.2.0" +load(pathJoin("gnu", gnu_ver)) -hpc_ver=os.getenv("hpc_ver") or "1.1.0" +prepend_path("MODULEPATH", "/scratch1/NCEPDEV/nems/role.epic/hpc-stack/libs/gnu-9.2/modulefiles/stack") + +hpc_ver=os.getenv("hpc_ver") or "1.2.0" load(pathJoin("hpc", hpc_ver)) -hpc_gnu_ver=os.getenv("hpc_gnu_ver") or "9.2.0" +hpc_gnu_ver=os.getenv("hpc_gnu_ver") or "9.2" load(pathJoin("hpc-gnu", hpc_gnu_ver)) hpc_mpich_ver=os.getenv("hpc_mpich_ver") or "3.3.2" diff --git a/modulefiles/ufs_hera.intel.lua b/modulefiles/ufs_hera.intel.lua index b262571c35..196ae3743e 100644 --- a/modulefiles/ufs_hera.intel.lua +++ b/modulefiles/ufs_hera.intel.lua @@ -12,9 +12,15 @@ load("sutils") cmake_ver=os.getenv("cmake_ver") or "3.20.1" load(pathJoin("cmake", cmake_ver)) -prepend_path("MODULEPATH", "/scratch2/NCEPDEV/nwprod/hpc-stack/libs/hpc-stack/modulefiles/stack") +intel_ver=os.getenv("intel_ver") or "2022.1.2" +load(pathJoin("intel", intel_ver)) -hpc_ver=os.getenv("hpc_ver") or "1.1.0" +impi_ver=os.getenv("impi_ver") or "2022.1.2" +load(pathJoin("impi", impi_ver)) + +prepend_path("MODULEPATH", "/scratch1/NCEPDEV/nems/role.epic/hpc-stack/libs/intel-2022.1.2/modulefiles/stack") + +hpc_ver=os.getenv("hpc_ver") or "1.2.0" load(pathJoin("hpc", hpc_ver)) hpc_intel_ver=os.getenv("hpc_intel_ver") or "2022.1.2" diff --git a/modulefiles/ufs_hera.intel_debug.lua b/modulefiles/ufs_hera.intel_debug.lua index 78ea39dadb..384bc68b2f 100644 --- a/modulefiles/ufs_hera.intel_debug.lua +++ b/modulefiles/ufs_hera.intel_debug.lua @@ -12,9 +12,15 @@ load("sutils") cmake_ver=os.getenv("cmake_ver") or "3.20.1" load(pathJoin("cmake", cmake_ver)) -prepend_path("MODULEPATH", "/scratch2/NCEPDEV/nwprod/hpc-stack/libs/hpc-stack/modulefiles/stack") +intel_ver=os.getenv("intel_ver") or "2022.1.2" +load(pathJoin("intel", intel_ver)) -hpc_ver=os.getenv("hpc_ver") or "1.1.0" +impi_ver=os.getenv("impi_ver") or "2022.1.2" +load(pathJoin("impi", impi_ver)) + +prepend_path("MODULEPATH", "/scratch1/NCEPDEV/nems/role.epic/hpc-stack/libs/intel-2022.1.2/modulefiles/stack") + +hpc_ver=os.getenv("hpc_ver") or "1.2.0" load(pathJoin("hpc", hpc_ver)) hpc_intel_ver=os.getenv("hpc_intel_ver") or "2022.1.2" diff --git a/tests/RegressionTests_cheyenne.gnu.log b/tests/RegressionTests_cheyenne.gnu.log index 7a5bf81e44..1dfae53e56 100644 --- a/tests/RegressionTests_cheyenne.gnu.log +++ b/tests/RegressionTests_cheyenne.gnu.log @@ -1,21 +1,21 @@ -Fri Nov 11 11:18:49 MST 2022 +Tue Nov 15 16:25:40 MST 2022 Start Regression test -Compile 001 elapsed time 383 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 002 elapsed time 406 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 003 elapsed time 844 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 004 elapsed time 198 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 005 elapsed time 378 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 1065 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 007 elapsed time 849 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 839 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 627 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 010 elapsed time 575 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 011 elapsed time 368 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 012 elapsed time 304 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 001 elapsed time 391 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 002 elapsed time 411 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 003 elapsed time 849 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 004 elapsed time 204 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 005 elapsed time 371 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 1056 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 850 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 836 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 632 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 010 elapsed time 580 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 011 elapsed time 370 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 012 elapsed time 301 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/GNU/control -working dir = /glade/scratch/jongkim/rt-1475-gnu/jongkim/FV3_RT/rt_50202/control +working dir = /glade/scratch/jongkim/rt-1486-gnu/jongkim/FV3_RT/rt_4735/control Checking test 001 control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -62,14 +62,14 @@ Checking test 001 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 275.917566 -0:The maximum resident set size (KB) = 435504 +0:The total amount of wall time = 277.087827 +0:The maximum resident set size (KB) = 435448 Test 001 control PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/GNU/control -working dir = /glade/scratch/jongkim/rt-1475-gnu/jongkim/FV3_RT/rt_50202/control_restart +working dir = /glade/scratch/jongkim/rt-1486-gnu/jongkim/FV3_RT/rt_4735/control_restart Checking test 002 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -108,14 +108,14 @@ Checking test 002 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 138.634708 -0:The maximum resident set size (KB) = 185376 +0:The total amount of wall time = 136.891089 +0:The maximum resident set size (KB) = 185224 Test 002 control_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/GNU/control_c48 -working dir = /glade/scratch/jongkim/rt-1475-gnu/jongkim/FV3_RT/rt_50202/control_c48 +working dir = /glade/scratch/jongkim/rt-1486-gnu/jongkim/FV3_RT/rt_4735/control_c48 Checking test 003 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -154,14 +154,14 @@ Checking test 003 control_c48 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 818.095147 -0:The maximum resident set size (KB) = 676740 +0:The total amount of wall time = 816.101087 +0:The maximum resident set size (KB) = 676612 Test 003 control_c48 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/GNU/control_stochy -working dir = /glade/scratch/jongkim/rt-1475-gnu/jongkim/FV3_RT/rt_50202/control_stochy +working dir = /glade/scratch/jongkim/rt-1486-gnu/jongkim/FV3_RT/rt_4735/control_stochy Checking test 004 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -172,14 +172,14 @@ Checking test 004 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 178.053369 -0:The maximum resident set size (KB) = 430832 +0:The total amount of wall time = 176.393287 +0:The maximum resident set size (KB) = 429904 Test 004 control_stochy PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/GNU/control_ras -working dir = /glade/scratch/jongkim/rt-1475-gnu/jongkim/FV3_RT/rt_50202/control_ras +working dir = /glade/scratch/jongkim/rt-1486-gnu/jongkim/FV3_RT/rt_4735/control_ras Checking test 005 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -190,14 +190,14 @@ Checking test 005 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 292.057515 -0:The maximum resident set size (KB) = 448396 +0:The total amount of wall time = 292.043944 +0:The maximum resident set size (KB) = 448252 Test 005 control_ras PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/GNU/control_p8 -working dir = /glade/scratch/jongkim/rt-1475-gnu/jongkim/FV3_RT/rt_50202/control_p8 +working dir = /glade/scratch/jongkim/rt-1486-gnu/jongkim/FV3_RT/rt_4735/control_p8 Checking test 006 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -244,14 +244,14 @@ Checking test 006 control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 308.516448 -0:The maximum resident set size (KB) = 1222488 +0:The total amount of wall time = 307.618967 +0:The maximum resident set size (KB) = 1222436 Test 006 control_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/GNU/rap_control -working dir = /glade/scratch/jongkim/rt-1475-gnu/jongkim/FV3_RT/rt_50202/rap_control +working dir = /glade/scratch/jongkim/rt-1486-gnu/jongkim/FV3_RT/rt_4735/rap_control Checking test 007 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -298,14 +298,14 @@ Checking test 007 rap_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 713.493427 -0:The maximum resident set size (KB) = 776664 +0:The total amount of wall time = 708.262263 +0:The maximum resident set size (KB) = 776072 Test 007 rap_control PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/GNU/rap_control -working dir = /glade/scratch/jongkim/rt-1475-gnu/jongkim/FV3_RT/rt_50202/rap_decomp +working dir = /glade/scratch/jongkim/rt-1486-gnu/jongkim/FV3_RT/rt_4735/rap_decomp Checking test 008 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -352,14 +352,14 @@ Checking test 008 rap_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 715.933585 -0:The maximum resident set size (KB) = 775616 +0:The total amount of wall time = 717.371089 +0:The maximum resident set size (KB) = 775568 Test 008 rap_decomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/GNU/rap_control -working dir = /glade/scratch/jongkim/rt-1475-gnu/jongkim/FV3_RT/rt_50202/rap_2threads +working dir = /glade/scratch/jongkim/rt-1486-gnu/jongkim/FV3_RT/rt_4735/rap_2threads Checking test 009 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -406,14 +406,14 @@ Checking test 009 rap_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 645.034181 -0:The maximum resident set size (KB) = 843216 +0:The total amount of wall time = 650.771984 +0:The maximum resident set size (KB) = 843276 Test 009 rap_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/GNU/rap_control -working dir = /glade/scratch/jongkim/rt-1475-gnu/jongkim/FV3_RT/rt_50202/rap_restart +working dir = /glade/scratch/jongkim/rt-1486-gnu/jongkim/FV3_RT/rt_4735/rap_restart Checking test 010 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -452,14 +452,14 @@ Checking test 010 rap_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 349.953825 -0:The maximum resident set size (KB) = 524156 +0:The total amount of wall time = 353.348717 +0:The maximum resident set size (KB) = 523992 Test 010 rap_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/GNU/rap_sfcdiff -working dir = /glade/scratch/jongkim/rt-1475-gnu/jongkim/FV3_RT/rt_50202/rap_sfcdiff +working dir = /glade/scratch/jongkim/rt-1486-gnu/jongkim/FV3_RT/rt_4735/rap_sfcdiff Checking test 011 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -506,14 +506,14 @@ Checking test 011 rap_sfcdiff results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 701.038817 +0:The total amount of wall time = 703.154161 0:The maximum resident set size (KB) = 776092 Test 011 rap_sfcdiff PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/GNU/rap_sfcdiff -working dir = /glade/scratch/jongkim/rt-1475-gnu/jongkim/FV3_RT/rt_50202/rap_sfcdiff_decomp +working dir = /glade/scratch/jongkim/rt-1486-gnu/jongkim/FV3_RT/rt_4735/rap_sfcdiff_decomp Checking test 012 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -560,14 +560,14 @@ Checking test 012 rap_sfcdiff_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 713.999176 -0:The maximum resident set size (KB) = 775544 +0:The total amount of wall time = 716.582997 +0:The maximum resident set size (KB) = 775540 Test 012 rap_sfcdiff_decomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/GNU/rap_sfcdiff -working dir = /glade/scratch/jongkim/rt-1475-gnu/jongkim/FV3_RT/rt_50202/rap_sfcdiff_restart +working dir = /glade/scratch/jongkim/rt-1486-gnu/jongkim/FV3_RT/rt_4735/rap_sfcdiff_restart Checking test 013 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -606,14 +606,14 @@ Checking test 013 rap_sfcdiff_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 523.505897 -0:The maximum resident set size (KB) = 523408 +0:The total amount of wall time = 522.552829 +0:The maximum resident set size (KB) = 523440 Test 013 rap_sfcdiff_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/GNU/hrrr_control -working dir = /glade/scratch/jongkim/rt-1475-gnu/jongkim/FV3_RT/rt_50202/hrrr_control +working dir = /glade/scratch/jongkim/rt-1486-gnu/jongkim/FV3_RT/rt_4735/hrrr_control Checking test 014 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -660,14 +660,14 @@ Checking test 014 hrrr_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 674.175139 -0:The maximum resident set size (KB) = 773652 +0:The total amount of wall time = 681.235716 +0:The maximum resident set size (KB) = 773500 Test 014 hrrr_control PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/GNU/hrrr_control -working dir = /glade/scratch/jongkim/rt-1475-gnu/jongkim/FV3_RT/rt_50202/hrrr_control_2threads +working dir = /glade/scratch/jongkim/rt-1486-gnu/jongkim/FV3_RT/rt_4735/hrrr_control_2threads Checking test 015 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -714,14 +714,14 @@ Checking test 015 hrrr_control_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 614.734883 -0:The maximum resident set size (KB) = 838092 +0:The total amount of wall time = 615.863177 +0:The maximum resident set size (KB) = 838172 Test 015 hrrr_control_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/GNU/hrrr_control -working dir = /glade/scratch/jongkim/rt-1475-gnu/jongkim/FV3_RT/rt_50202/hrrr_control_decomp +working dir = /glade/scratch/jongkim/rt-1486-gnu/jongkim/FV3_RT/rt_4735/hrrr_control_decomp Checking test 016 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -768,14 +768,14 @@ Checking test 016 hrrr_control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 675.153307 -0:The maximum resident set size (KB) = 773108 +0:The total amount of wall time = 679.644400 +0:The maximum resident set size (KB) = 773048 Test 016 hrrr_control_decomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/GNU/hrrr_control -working dir = /glade/scratch/jongkim/rt-1475-gnu/jongkim/FV3_RT/rt_50202/hrrr_control_restart +working dir = /glade/scratch/jongkim/rt-1486-gnu/jongkim/FV3_RT/rt_4735/hrrr_control_restart Checking test 017 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -814,14 +814,14 @@ Checking test 017 hrrr_control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 506.797095 -0:The maximum resident set size (KB) = 519584 +0:The total amount of wall time = 510.127931 +0:The maximum resident set size (KB) = 519708 Test 017 hrrr_control_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/GNU/rrfs_v1beta -working dir = /glade/scratch/jongkim/rt-1475-gnu/jongkim/FV3_RT/rt_50202/rrfs_v1beta +working dir = /glade/scratch/jongkim/rt-1486-gnu/jongkim/FV3_RT/rt_4735/rrfs_v1beta Checking test 018 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -868,14 +868,14 @@ Checking test 018 rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 689.736962 -0:The maximum resident set size (KB) = 773276 +0:The total amount of wall time = 693.349997 +0:The maximum resident set size (KB) = 773188 Test 018 rrfs_v1beta PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/GNU/rrfs_conus13km_hrrr_warm -working dir = /glade/scratch/jongkim/rt-1475-gnu/jongkim/FV3_RT/rt_50202/rrfs_conus13km_hrrr_warm +working dir = /glade/scratch/jongkim/rt-1486-gnu/jongkim/FV3_RT/rt_4735/rrfs_conus13km_hrrr_warm Checking test 019 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -884,14 +884,14 @@ Checking test 019 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 203.322960 -0:The maximum resident set size (KB) = 593860 +0:The total amount of wall time = 203.538372 +0:The maximum resident set size (KB) = 594580 Test 019 rrfs_conus13km_hrrr_warm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/jongkim/rt-1475-gnu/jongkim/FV3_RT/rt_50202/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/jongkim/rt-1486-gnu/jongkim/FV3_RT/rt_4735/rrfs_smoke_conus13km_hrrr_warm Checking test 020 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -900,14 +900,14 @@ Checking test 020 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 220.822729 -0:The maximum resident set size (KB) = 607900 +0:The total amount of wall time = 221.196044 +0:The maximum resident set size (KB) = 607776 Test 020 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/GNU/rrfs_conus13km_radar_tten_warm -working dir = /glade/scratch/jongkim/rt-1475-gnu/jongkim/FV3_RT/rt_50202/rrfs_conus13km_radar_tten_warm +working dir = /glade/scratch/jongkim/rt-1486-gnu/jongkim/FV3_RT/rt_4735/rrfs_conus13km_radar_tten_warm Checking test 021 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -916,14 +916,14 @@ Checking test 021 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 204.236837 -0:The maximum resident set size (KB) = 596324 +0:The total amount of wall time = 204.729866 +0:The maximum resident set size (KB) = 596656 Test 021 rrfs_conus13km_radar_tten_warm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/GNU/rrfs_conus13km_radar_tten_warm -working dir = /glade/scratch/jongkim/rt-1475-gnu/jongkim/FV3_RT/rt_50202/rrfs_conus13km_radar_tten_warm_2threads +working dir = /glade/scratch/jongkim/rt-1486-gnu/jongkim/FV3_RT/rt_4735/rrfs_conus13km_radar_tten_warm_2threads Checking test 022 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -932,222 +932,222 @@ Checking test 022 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 128.716407 -0:The maximum resident set size (KB) = 599980 +0:The total amount of wall time = 128.489448 +0:The maximum resident set size (KB) = 599824 Test 022 rrfs_conus13km_radar_tten_warm_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/GNU/control_debug -working dir = /glade/scratch/jongkim/rt-1475-gnu/jongkim/FV3_RT/rt_50202/control_debug +working dir = /glade/scratch/jongkim/rt-1486-gnu/jongkim/FV3_RT/rt_4735/control_debug Checking test 023 control_debug 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.945880 -0:The maximum resident set size (KB) = 426552 +0:The total amount of wall time = 82.103309 +0:The maximum resident set size (KB) = 426484 Test 023 control_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/GNU/control_diag_debug -working dir = /glade/scratch/jongkim/rt-1475-gnu/jongkim/FV3_RT/rt_50202/control_diag_debug +working dir = /glade/scratch/jongkim/rt-1486-gnu/jongkim/FV3_RT/rt_4735/control_diag_debug Checking test 024 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 89.076855 -0:The maximum resident set size (KB) = 483708 +0:The total amount of wall time = 88.114355 +0:The maximum resident set size (KB) = 483648 Test 024 control_diag_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/GNU/regional_debug -working dir = /glade/scratch/jongkim/rt-1475-gnu/jongkim/FV3_RT/rt_50202/regional_debug +working dir = /glade/scratch/jongkim/rt-1486-gnu/jongkim/FV3_RT/rt_4735/regional_debug Checking test 025 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -0:The total amount of wall time = 478.558331 -0:The maximum resident set size (KB) = 559392 +0:The total amount of wall time = 480.472287 +0:The maximum resident set size (KB) = 559116 Test 025 regional_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/GNU/rap_control_debug -working dir = /glade/scratch/jongkim/rt-1475-gnu/jongkim/FV3_RT/rt_50202/rap_control_debug +working dir = /glade/scratch/jongkim/rt-1486-gnu/jongkim/FV3_RT/rt_4735/rap_control_debug Checking test 026 rap_control_debug 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.651402 -0:The maximum resident set size (KB) = 798672 +0:The total amount of wall time = 149.163215 +0:The maximum resident set size (KB) = 798536 Test 026 rap_control_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/GNU/hrrr_control_debug -working dir = /glade/scratch/jongkim/rt-1475-gnu/jongkim/FV3_RT/rt_50202/hrrr_control_debug +working dir = /glade/scratch/jongkim/rt-1486-gnu/jongkim/FV3_RT/rt_4735/hrrr_control_debug Checking test 027 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 146.867377 -0:The maximum resident set size (KB) = 793384 +0:The total amount of wall time = 148.280525 +0:The maximum resident set size (KB) = 793332 Test 027 hrrr_control_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/GNU/rap_diag_debug -working dir = /glade/scratch/jongkim/rt-1475-gnu/jongkim/FV3_RT/rt_50202/rap_diag_debug +working dir = /glade/scratch/jongkim/rt-1486-gnu/jongkim/FV3_RT/rt_4735/rap_diag_debug Checking test 028 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 157.667086 -0:The maximum resident set size (KB) = 882216 +0:The total amount of wall time = 158.436562 +0:The maximum resident set size (KB) = 882176 Test 028 rap_diag_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/GNU/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /glade/scratch/jongkim/rt-1475-gnu/jongkim/FV3_RT/rt_50202/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /glade/scratch/jongkim/rt-1486-gnu/jongkim/FV3_RT/rt_4735/rap_noah_sfcdiff_cires_ugwp_debug Checking test 029 rap_noah_sfcdiff_cires_ugwp_debug 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.585507 -0:The maximum resident set size (KB) = 797200 +0:The total amount of wall time = 237.638764 +0:The maximum resident set size (KB) = 797256 Test 029 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/GNU/rap_progcld_thompson_debug -working dir = /glade/scratch/jongkim/rt-1475-gnu/jongkim/FV3_RT/rt_50202/rap_progcld_thompson_debug +working dir = /glade/scratch/jongkim/rt-1486-gnu/jongkim/FV3_RT/rt_4735/rap_progcld_thompson_debug Checking test 030 rap_progcld_thompson_debug 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.879413 -0:The maximum resident set size (KB) = 798660 +0:The total amount of wall time = 152.127634 +0:The maximum resident set size (KB) = 798712 Test 030 rap_progcld_thompson_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/GNU/rrfs_v1beta_debug -working dir = /glade/scratch/jongkim/rt-1475-gnu/jongkim/FV3_RT/rt_50202/rrfs_v1beta_debug +working dir = /glade/scratch/jongkim/rt-1486-gnu/jongkim/FV3_RT/rt_4735/rrfs_v1beta_debug Checking test 031 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 147.471555 -0:The maximum resident set size (KB) = 792988 +0:The total amount of wall time = 147.975785 +0:The maximum resident set size (KB) = 793016 Test 031 rrfs_v1beta_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/GNU/control_ras_debug -working dir = /glade/scratch/jongkim/rt-1475-gnu/jongkim/FV3_RT/rt_50202/control_ras_debug +working dir = /glade/scratch/jongkim/rt-1486-gnu/jongkim/FV3_RT/rt_4735/control_ras_debug Checking test 032 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 85.137262 -0:The maximum resident set size (KB) = 436360 +0:The total amount of wall time = 85.186280 +0:The maximum resident set size (KB) = 436376 Test 032 control_ras_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/GNU/control_stochy_debug -working dir = /glade/scratch/jongkim/rt-1475-gnu/jongkim/FV3_RT/rt_50202/control_stochy_debug +working dir = /glade/scratch/jongkim/rt-1486-gnu/jongkim/FV3_RT/rt_4735/control_stochy_debug Checking test 033 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 92.396642 -0:The maximum resident set size (KB) = 430376 +0:The total amount of wall time = 92.295952 +0:The maximum resident set size (KB) = 430420 Test 033 control_stochy_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/GNU/control_debug_p8 -working dir = /glade/scratch/jongkim/rt-1475-gnu/jongkim/FV3_RT/rt_50202/control_debug_p8 +working dir = /glade/scratch/jongkim/rt-1486-gnu/jongkim/FV3_RT/rt_4735/control_debug_p8 Checking test 034 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 95.701145 -0:The maximum resident set size (KB) = 1213908 +0:The total amount of wall time = 95.556838 +0:The maximum resident set size (KB) = 1213868 Test 034 control_debug_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/GNU/rrfs_conus13km_hrrr_warm_debugs -working dir = /glade/scratch/jongkim/rt-1475-gnu/jongkim/FV3_RT/rt_50202/rrfs_conus13km_hrrr_warm_debug +working dir = /glade/scratch/jongkim/rt-1486-gnu/jongkim/FV3_RT/rt_4735/rrfs_conus13km_hrrr_warm_debug Checking test 035 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 386.969239 -0:The maximum resident set size (KB) = 601544 +0:The total amount of wall time = 388.622577 +0:The maximum resident set size (KB) = 602108 Test 035 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/GNU/rrfs_conus13km_radar_tten_warm_debug -working dir = /glade/scratch/jongkim/rt-1475-gnu/jongkim/FV3_RT/rt_50202/rrfs_conus13km_radar_tten_warm_debug +working dir = /glade/scratch/jongkim/rt-1486-gnu/jongkim/FV3_RT/rt_4735/rrfs_conus13km_radar_tten_warm_debug Checking test 036 rrfs_conus13km_radar_tten_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 404.418655 -0:The maximum resident set size (KB) = 604312 +0:The total amount of wall time = 389.973118 +0:The maximum resident set size (KB) = 604364 Test 036 rrfs_conus13km_radar_tten_warm_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/GNU/control_wam_debug -working dir = /glade/scratch/jongkim/rt-1475-gnu/jongkim/FV3_RT/rt_50202/control_wam_debug +working dir = /glade/scratch/jongkim/rt-1486-gnu/jongkim/FV3_RT/rt_4735/control_wam_debug Checking test 037 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -0:The total amount of wall time = 144.960730 -0:The maximum resident set size (KB) = 172536 +0:The total amount of wall time = 144.937587 +0:The maximum resident set size (KB) = 172452 Test 037 control_wam_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1475-gnu/jongkim/FV3_RT/rt_50202/rap_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1486-gnu/jongkim/FV3_RT/rt_4735/rap_control_dyn32_phy32 Checking test 038 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1194,14 +1194,14 @@ Checking test 038 rap_control_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 680.919224 -0:The maximum resident set size (KB) = 662100 +0:The total amount of wall time = 676.283019 +0:The maximum resident set size (KB) = 661984 Test 038 rap_control_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1475-gnu/jongkim/FV3_RT/rt_50202/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1486-gnu/jongkim/FV3_RT/rt_4735/hrrr_control_dyn32_phy32 Checking test 039 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1248,14 +1248,14 @@ Checking test 039 hrrr_control_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 347.774696 -0:The maximum resident set size (KB) = 660096 +0:The total amount of wall time = 346.670649 +0:The maximum resident set size (KB) = 660116 Test 039 hrrr_control_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1475-gnu/jongkim/FV3_RT/rt_50202/rap_2threads_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1486-gnu/jongkim/FV3_RT/rt_4735/rap_2threads_dyn32_phy32 Checking test 040 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1302,14 +1302,14 @@ Checking test 040 rap_2threads_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 617.624703 -0:The maximum resident set size (KB) = 697736 +0:The total amount of wall time = 618.282187 +0:The maximum resident set size (KB) = 698472 Test 040 rap_2threads_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1475-gnu/jongkim/FV3_RT/rt_50202/hrrr_control_2threads_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1486-gnu/jongkim/FV3_RT/rt_4735/hrrr_control_2threads_dyn32_phy32 Checking test 041 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1356,14 +1356,14 @@ Checking test 041 hrrr_control_2threads_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 311.514641 -0:The maximum resident set size (KB) = 699504 +0:The total amount of wall time = 309.909297 +0:The maximum resident set size (KB) = 699492 Test 041 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1475-gnu/jongkim/FV3_RT/rt_50202/hrrr_control_decomp_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1486-gnu/jongkim/FV3_RT/rt_4735/hrrr_control_decomp_dyn32_phy32 Checking test 042 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1410,14 +1410,14 @@ Checking test 042 hrrr_control_decomp_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 344.839023 -0:The maximum resident set size (KB) = 659568 +0:The total amount of wall time = 344.253745 +0:The maximum resident set size (KB) = 659048 Test 042 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1475-gnu/jongkim/FV3_RT/rt_50202/rap_restart_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1486-gnu/jongkim/FV3_RT/rt_4735/rap_restart_dyn32_phy32 Checking test 043 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -1456,14 +1456,14 @@ Checking test 043 rap_restart_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 508.435196 -0:The maximum resident set size (KB) = 499424 +0:The total amount of wall time = 508.837695 +0:The maximum resident set size (KB) = 499500 Test 043 rap_restart_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1475-gnu/jongkim/FV3_RT/rt_50202/hrrr_control_restart_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1486-gnu/jongkim/FV3_RT/rt_4735/hrrr_control_restart_dyn32_phy32 Checking test 044 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -1502,14 +1502,14 @@ Checking test 044 hrrr_control_restart_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 175.454356 -0:The maximum resident set size (KB) = 497404 +0:The total amount of wall time = 175.229936 +0:The maximum resident set size (KB) = 497328 Test 044 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/GNU/rap_control_dyn64_phy32 -working dir = /glade/scratch/jongkim/rt-1475-gnu/jongkim/FV3_RT/rt_50202/rap_control_dyn64_phy32 +working dir = /glade/scratch/jongkim/rt-1486-gnu/jongkim/FV3_RT/rt_4735/rap_control_dyn64_phy32 Checking test 045 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1556,56 +1556,56 @@ Checking test 045 rap_control_dyn64_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 402.517174 -0:The maximum resident set size (KB) = 680984 +0:The total amount of wall time = 403.948856 +0:The maximum resident set size (KB) = 680920 Test 045 rap_control_dyn64_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/GNU/rap_control_debug_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1475-gnu/jongkim/FV3_RT/rt_50202/rap_control_debug_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1486-gnu/jongkim/FV3_RT/rt_4735/rap_control_debug_dyn32_phy32 Checking test 046 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 145.497015 -0:The maximum resident set size (KB) = 679196 +0:The total amount of wall time = 149.185323 +0:The maximum resident set size (KB) = 679220 Test 046 rap_control_debug_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/GNU/hrrr_control_debug_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1475-gnu/jongkim/FV3_RT/rt_50202/hrrr_control_debug_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1486-gnu/jongkim/FV3_RT/rt_4735/hrrr_control_debug_dyn32_phy32 Checking test 047 hrrr_control_debug_dyn32_phy32 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.984796 -0:The maximum resident set size (KB) = 676208 +0:The total amount of wall time = 143.365414 +0:The maximum resident set size (KB) = 676100 Test 047 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/GNU/rap_control_debug_dyn64_phy32 -working dir = /glade/scratch/jongkim/rt-1475-gnu/jongkim/FV3_RT/rt_50202/rap_control_dyn64_phy32_debug +working dir = /glade/scratch/jongkim/rt-1486-gnu/jongkim/FV3_RT/rt_4735/rap_control_dyn64_phy32_debug Checking test 048 rap_control_dyn64_phy32_debug 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.221907 -0:The maximum resident set size (KB) = 698232 +0:The total amount of wall time = 151.041234 +0:The maximum resident set size (KB) = 698732 Test 048 rap_control_dyn64_phy32_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/GNU/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1475-gnu/jongkim/FV3_RT/rt_50202/cpld_control_p8 +working dir = /glade/scratch/jongkim/rt-1486-gnu/jongkim/FV3_RT/rt_4735/cpld_control_p8 Checking test 049 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1670,14 +1670,14 @@ Checking test 049 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 495.723904 -0:The maximum resident set size (KB) = 3141692 +0:The total amount of wall time = 499.040667 +0:The maximum resident set size (KB) = 3141964 Test 049 cpld_control_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/GNU/cpld_control_c96_noaero_p8 -working dir = /glade/scratch/jongkim/rt-1475-gnu/jongkim/FV3_RT/rt_50202/cpld_control_nowave_noaero_p8 +working dir = /glade/scratch/jongkim/rt-1486-gnu/jongkim/FV3_RT/rt_4735/cpld_control_nowave_noaero_p8 Checking test 050 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1739,14 +1739,14 @@ Checking test 050 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 244.850956 -0:The maximum resident set size (KB) = 1225384 +0:The total amount of wall time = 246.219454 +0:The maximum resident set size (KB) = 1223984 Test 050 cpld_control_nowave_noaero_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/GNU/cpld_debug_p8 -working dir = /glade/scratch/jongkim/rt-1475-gnu/jongkim/FV3_RT/rt_50202/cpld_debug_p8 +working dir = /glade/scratch/jongkim/rt-1486-gnu/jongkim/FV3_RT/rt_4735/cpld_debug_p8 Checking test 051 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1799,25 +1799,25 @@ Checking test 051 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 277.658870 -0:The maximum resident set size (KB) = 3159996 +0:The total amount of wall time = 278.292692 +0:The maximum resident set size (KB) = 3161668 Test 051 cpld_debug_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/GNU/datm_cdeps_control_cfsr -working dir = /glade/scratch/jongkim/rt-1475-gnu/jongkim/FV3_RT/rt_50202/datm_cdeps_control_cfsr +working dir = /glade/scratch/jongkim/rt-1486-gnu/jongkim/FV3_RT/rt_4735/datm_cdeps_control_cfsr Checking test 052 datm_cdeps_control_cfsr results .... Comparing RESTART/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 = 178.562475 -0:The maximum resident set size (KB) = 683968 +0:The total amount of wall time = 179.119771 +0:The maximum resident set size (KB) = 680488 Test 052 datm_cdeps_control_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Fri Nov 11 11:55:54 MST 2022 -Elapsed time: 00h:37m:06s. Have a nice day! +Tue Nov 15 16:57:45 MST 2022 +Elapsed time: 00h:32m:06s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.intel.log b/tests/RegressionTests_cheyenne.intel.log index 81172cd082..ed0145fb1f 100644 --- a/tests/RegressionTests_cheyenne.intel.log +++ b/tests/RegressionTests_cheyenne.intel.log @@ -1,34 +1,34 @@ -Fri Nov 11 11:19:18 MST 2022 +Tue Nov 15 16:26:04 MST 2022 Start Regression test -Compile 001 elapsed time 1251 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 1120 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 456 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 004 elapsed time 403 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 843 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 006 elapsed time 834 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 007 elapsed time 756 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 008 elapsed time 790 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 001 elapsed time 1255 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 1125 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 452 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 004 elapsed time 402 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 829 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 006 elapsed time 852 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 007 elapsed time 754 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 008 elapsed time 775 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release Compile 009 elapsed time 693 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 577 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 1331 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 012 elapsed time 244 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 013 elapsed time 573 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 014 elapsed time 572 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 015 elapsed time 247 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 250 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 017 elapsed time 884 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 018 elapsed time 870 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 019 elapsed time 437 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 010 elapsed time 578 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 1327 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 012 elapsed time 247 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 013 elapsed time 569 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 elapsed time 574 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 015 elapsed time 259 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 256 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 017 elapsed time 918 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 018 elapsed time 871 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 019 elapsed time 443 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON Compile 020 elapsed time 204 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 021 elapsed time 110 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 022 elapsed time 733 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 797 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 024 elapsed time 650 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 025 elapsed time 634 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 021 elapsed time 108 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 022 elapsed time 721 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 805 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 024 elapsed time 655 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 025 elapsed time 632 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/cpld_control_p8 +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/cpld_control_p8 Checking test 001 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -93,14 +93,14 @@ Checking test 001 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 321.381373 -0:The maximum resident set size (KB) = 2719332 +0:The total amount of wall time = 325.088481 +0:The maximum resident set size (KB) = 2719180 Test 001 cpld_control_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/cpld_restart_p8 +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/cpld_restart_p8 Checking test 002 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -153,14 +153,14 @@ Checking test 002 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 188.662495 -0:The maximum resident set size (KB) = 2580676 +0:The total amount of wall time = 193.952047 +0:The maximum resident set size (KB) = 2580912 Test 002 cpld_restart_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/cpld_2threads_p8 +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/cpld_2threads_p8 Checking test 003 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -213,14 +213,14 @@ Checking test 003 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 244.854650 -0:The maximum resident set size (KB) = 3165224 +0:The total amount of wall time = 254.647555 +0:The maximum resident set size (KB) = 3165388 Test 003 cpld_2threads_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/cpld_esmfthreads_p8 +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/cpld_esmfthreads_p8 Checking test 004 cpld_esmfthreads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -273,14 +273,14 @@ Checking test 004 cpld_esmfthreads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 258.144920 -0:The maximum resident set size (KB) = 2887776 +0:The total amount of wall time = 266.844341 +0:The maximum resident set size (KB) = 2886412 Test 004 cpld_esmfthreads_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/cpld_decomp_p8 +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/cpld_decomp_p8 Checking test 005 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -333,14 +333,14 @@ Checking test 005 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 322.212646 -0:The maximum resident set size (KB) = 2723700 +0:The total amount of wall time = 323.288759 +0:The maximum resident set size (KB) = 2723920 Test 005 cpld_decomp_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/cpld_mpi_p8 +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/cpld_mpi_p8 Checking test 006 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -393,14 +393,14 @@ Checking test 006 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 278.698287 -0:The maximum resident set size (KB) = 2687488 +0:The total amount of wall time = 285.954620 +0:The maximum resident set size (KB) = 2687856 Test 006 cpld_mpi_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/cpld_control_ciceC_p8 -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/cpld_control_ciceC_p8 +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/cpld_control_ciceC_p8 Checking test 007 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -465,14 +465,14 @@ Checking test 007 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 320.769927 -0:The maximum resident set size (KB) = 2719284 +0:The total amount of wall time = 326.143276 +0:The maximum resident set size (KB) = 2719856 Test 007 cpld_control_ciceC_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/cpld_control_c192_p8 -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/cpld_control_c192_p8 +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/cpld_control_c192_p8 Checking test 008 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -525,14 +525,14 @@ Checking test 008 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK -0:The total amount of wall time = 619.153686 -0:The maximum resident set size (KB) = 3024972 +0:The total amount of wall time = 635.140678 +0:The maximum resident set size (KB) = 3025412 Test 008 cpld_control_c192_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/cpld_control_c192_p8 -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/cpld_restart_c192_p8 +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/cpld_restart_c192_p8 Checking test 009 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -585,14 +585,14 @@ Checking test 009 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK -0:The total amount of wall time = 450.852546 -0:The maximum resident set size (KB) = 2952920 +0:The total amount of wall time = 374.682218 +0:The maximum resident set size (KB) = 2953732 Test 009 cpld_restart_c192_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/cpld_control_noaero_p8 -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/cpld_control_noaero_p8 +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/cpld_control_noaero_p8 Checking test 010 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -656,14 +656,14 @@ Checking test 010 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 274.237510 -0:The maximum resident set size (KB) = 1440208 +0:The total amount of wall time = 273.997279 +0:The maximum resident set size (KB) = 1440652 Test 010 cpld_control_noaero_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/cpld_control_c96_noaero_p8 -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/cpld_control_nowave_noaero_p8 +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/cpld_control_nowave_noaero_p8 Checking test 011 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -725,14 +725,14 @@ Checking test 011 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 194.667059 -0:The maximum resident set size (KB) = 1454356 +0:The total amount of wall time = 196.383317 +0:The maximum resident set size (KB) = 1454656 Test 011 cpld_control_nowave_noaero_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/cpld_debug_p8 -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/cpld_debug_p8 +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/cpld_debug_p8 Checking test 012 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -785,14 +785,14 @@ Checking test 012 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 476.056889 -0:The maximum resident set size (KB) = 2790780 +0:The total amount of wall time = 482.065590 +0:The maximum resident set size (KB) = 2790676 Test 012 cpld_debug_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/cpld_debug_noaero_p8 -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/cpld_debug_noaero_p8 +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/cpld_debug_noaero_p8 Checking test 013 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -844,14 +844,14 @@ Checking test 013 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 347.342705 -0:The maximum resident set size (KB) = 1465868 +0:The total amount of wall time = 349.451331 +0:The maximum resident set size (KB) = 1464804 Test 013 cpld_debug_noaero_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/cpld_control_noaero_p8_agrid -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/cpld_control_noaero_p8_agrid +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/cpld_control_noaero_p8_agrid Checking test 014 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -913,14 +913,14 @@ Checking test 014 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 257.800947 -0:The maximum resident set size (KB) = 1458764 +0:The total amount of wall time = 265.646854 +0:The maximum resident set size (KB) = 1458536 Test 014 cpld_control_noaero_p8_agrid PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/cpld_control_c48 -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/cpld_control_c48 +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/cpld_control_c48 Checking test 015 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -970,14 +970,14 @@ Checking test 015 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 612.277780 -0:The maximum resident set size (KB) = 2583196 +0:The total amount of wall time = 617.165923 +0:The maximum resident set size (KB) = 2583100 Test 015 cpld_control_c48 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/cpld_warmstart_c48 -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/cpld_warmstart_c48 +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/cpld_warmstart_c48 Checking test 016 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1027,14 +1027,14 @@ Checking test 016 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -0:The total amount of wall time = 162.997365 -0:The maximum resident set size (KB) = 2599536 +0:The total amount of wall time = 164.268797 +0:The maximum resident set size (KB) = 2599432 Test 016 cpld_warmstart_c48 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/cpld_warmstart_c48 -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/cpld_restart_c48 +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/cpld_restart_c48 Checking test 017 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1084,14 +1084,14 @@ Checking test 017 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -0:The total amount of wall time = 84.576320 -0:The maximum resident set size (KB) = 2017260 +0:The total amount of wall time = 85.456520 +0:The maximum resident set size (KB) = 2016740 Test 017 cpld_restart_c48 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/control -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/control +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/control Checking test 018 control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1138,14 +1138,14 @@ Checking test 018 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 147.460462 -0:The maximum resident set size (KB) = 456824 +0:The total amount of wall time = 149.724743 +0:The maximum resident set size (KB) = 456820 Test 018 control PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/control -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/control_decomp +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/control_decomp Checking test 019 control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1188,14 +1188,14 @@ Checking test 019 control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 153.675562 -0:The maximum resident set size (KB) = 454312 +0:The total amount of wall time = 154.556649 +0:The maximum resident set size (KB) = 454348 Test 019 control_decomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/control -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/control_2dwrtdecomp +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/control_2dwrtdecomp Checking test 020 control_2dwrtdecomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1206,14 +1206,14 @@ Checking test 020 control_2dwrtdecomp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 146.979603 -0:The maximum resident set size (KB) = 457268 +0:The total amount of wall time = 147.797223 +0:The maximum resident set size (KB) = 457348 Test 020 control_2dwrtdecomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/control -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/control_2threads +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/control_2threads Checking test 021 control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1256,14 +1256,14 @@ Checking test 021 control_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 138.296519 -0:The maximum resident set size (KB) = 505436 +0:The total amount of wall time = 139.435254 +0:The maximum resident set size (KB) = 505588 Test 021 control_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/control -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/control_restart +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/control_restart Checking test 022 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1302,14 +1302,14 @@ Checking test 022 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 76.883028 -0:The maximum resident set size (KB) = 196932 +0:The total amount of wall time = 75.800076 +0:The maximum resident set size (KB) = 197164 Test 022 control_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/control -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/control_fhzero +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/control_fhzero Checking test 023 control_fhzero results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -1352,14 +1352,14 @@ Checking test 023 control_fhzero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 138.387978 -0:The maximum resident set size (KB) = 456272 +0:The total amount of wall time = 138.065349 +0:The maximum resident set size (KB) = 456424 Test 023 control_fhzero PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/control_CubedSphereGrid -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/control_CubedSphereGrid +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/control_CubedSphereGrid Checking test 024 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1386,28 +1386,28 @@ Checking test 024 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -0:The total amount of wall time = 141.824996 -0:The maximum resident set size (KB) = 456652 +0:The total amount of wall time = 142.784594 +0:The maximum resident set size (KB) = 456716 Test 024 control_CubedSphereGrid PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/control_CubedSphereGrid_parallel -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/control_CubedSphereGrid_parallel +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/control_CubedSphereGrid_parallel Checking test 025 control_CubedSphereGrid_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK -0:The total amount of wall time = 139.432542 -0:The maximum resident set size (KB) = 456696 +0:The total amount of wall time = 140.992680 +0:The maximum resident set size (KB) = 456708 Test 025 control_CubedSphereGrid_parallel PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/control_latlon -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/control_latlon +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/control_latlon Checking test 026 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1418,14 +1418,14 @@ Checking test 026 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 142.269116 -0:The maximum resident set size (KB) = 456568 +0:The total amount of wall time = 145.966413 +0:The maximum resident set size (KB) = 456580 Test 026 control_latlon PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/control_wrtGauss_netcdf_parallel -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/control_wrtGauss_netcdf_parallel +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/control_wrtGauss_netcdf_parallel Checking test 027 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc .........OK @@ -1436,14 +1436,14 @@ Checking test 027 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 149.186072 -0:The maximum resident set size (KB) = 456764 +0:The total amount of wall time = 151.520741 +0:The maximum resident set size (KB) = 456864 Test 027 control_wrtGauss_netcdf_parallel PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/control_c48 -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/control_c48 +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/control_c48 Checking test 028 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1482,14 +1482,14 @@ Checking test 028 control_c48 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 445.418212 -0:The maximum resident set size (KB) = 628040 +0:The total amount of wall time = 443.403499 +0:The maximum resident set size (KB) = 628056 Test 028 control_c48 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/control_c192 -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/control_c192 +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/control_c192 Checking test 029 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1500,14 +1500,14 @@ Checking test 029 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 598.664304 -0:The maximum resident set size (KB) = 560220 +0:The total amount of wall time = 600.961209 +0:The maximum resident set size (KB) = 560232 Test 029 control_c192 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/control_c384 -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/control_c384 +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/control_c384 Checking test 030 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1518,14 +1518,14 @@ Checking test 030 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 563.552347 -0:The maximum resident set size (KB) = 835568 +0:The total amount of wall time = 593.351148 +0:The maximum resident set size (KB) = 835648 Test 030 control_c384 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/control_c384gdas -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/control_c384gdas +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/control_c384gdas Checking test 031 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1568,14 +1568,14 @@ Checking test 031 control_c384gdas results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 505.847041 -0:The maximum resident set size (KB) = 971964 +0:The total amount of wall time = 515.200754 +0:The maximum resident set size (KB) = 971688 Test 031 control_c384gdas PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/control_c384_progsigma -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/control_c384_progsigma +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/control_c384_progsigma Checking test 032 control_c384_progsigma results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1586,14 +1586,14 @@ Checking test 032 control_c384_progsigma results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 576.389138 -0:The maximum resident set size (KB) = 854480 +0:The total amount of wall time = 595.579663 +0:The maximum resident set size (KB) = 854288 Test 032 control_c384_progsigma PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/control_stochy -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/control_stochy +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/control_stochy Checking test 033 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1604,28 +1604,28 @@ Checking test 033 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 97.241319 -0:The maximum resident set size (KB) = 459660 +0:The total amount of wall time = 97.940422 +0:The maximum resident set size (KB) = 459820 Test 033 control_stochy PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/control_stochy -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/control_stochy_restart +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/control_stochy_restart Checking test 034 control_stochy_restart 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.975572 -0:The maximum resident set size (KB) = 225568 +0:The total amount of wall time = 52.074035 +0:The maximum resident set size (KB) = 225684 Test 034 control_stochy_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/control_lndp -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/control_lndp +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/control_lndp Checking test 035 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1636,14 +1636,14 @@ Checking test 035 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 89.162165 -0:The maximum resident set size (KB) = 458184 +0:The total amount of wall time = 90.259303 +0:The maximum resident set size (KB) = 458520 Test 035 control_lndp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/control_iovr4 -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/control_iovr4 +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/control_iovr4 Checking test 036 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1658,14 +1658,14 @@ Checking test 036 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 147.663983 -0:The maximum resident set size (KB) = 456272 +0:The total amount of wall time = 149.698499 +0:The maximum resident set size (KB) = 456832 Test 036 control_iovr4 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/control_iovr5 -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/control_iovr5 +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/control_iovr5 Checking test 037 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1680,14 +1680,14 @@ Checking test 037 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 147.868295 -0:The maximum resident set size (KB) = 456724 +0:The total amount of wall time = 152.324826 +0:The maximum resident set size (KB) = 456848 Test 037 control_iovr5 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/control_p8 -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/control_p8 +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/control_p8 Checking test 038 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1734,14 +1734,14 @@ Checking test 038 control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 176.406920 -0:The maximum resident set size (KB) = 1425944 +0:The total amount of wall time = 180.379729 +0:The maximum resident set size (KB) = 1426280 Test 038 control_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/control_p8_lndp -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/control_p8_lndp +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/control_p8_lndp Checking test 039 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1760,14 +1760,14 @@ Checking test 039 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -0:The total amount of wall time = 335.418360 +0:The total amount of wall time = 335.904951 0:The maximum resident set size (KB) = 1426748 Test 039 control_p8_lndp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/control_p8 -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/control_restart_p8 +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/control_restart_p8 Checking test 040 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1806,14 +1806,14 @@ Checking test 040 control_restart_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 93.278580 -0:The maximum resident set size (KB) = 582668 +0:The total amount of wall time = 96.482226 +0:The maximum resident set size (KB) = 583016 Test 040 control_restart_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/control_p8 -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/control_decomp_p8 +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/control_decomp_p8 Checking test 041 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1856,14 +1856,14 @@ Checking test 041 control_decomp_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 187.672588 -0:The maximum resident set size (KB) = 1420552 +0:The total amount of wall time = 182.975017 +0:The maximum resident set size (KB) = 1420564 Test 041 control_decomp_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/control_p8 -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/control_2threads_p8 +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/control_2threads_p8 Checking test 042 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1906,14 +1906,14 @@ Checking test 042 control_2threads_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 169.198586 -0:The maximum resident set size (KB) = 1496916 +0:The total amount of wall time = 172.470604 +0:The maximum resident set size (KB) = 1496880 Test 042 control_2threads_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/control_p8_rrtmgp -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/control_p8_rrtmgp +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/control_p8_rrtmgp Checking test 043 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1960,14 +1960,14 @@ Checking test 043 control_p8_rrtmgp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 247.034853 -0:The maximum resident set size (KB) = 1542148 +0:The total amount of wall time = 248.864494 +0:The maximum resident set size (KB) = 1542164 Test 043 control_p8_rrtmgp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/merra2_thompson -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/merra2_thompson +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/merra2_thompson Checking test 044 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2014,14 +2014,14 @@ Checking test 044 merra2_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 179.878732 +0:The total amount of wall time = 184.856144 0:The maximum resident set size (KB) = 1431600 Test 044 merra2_thompson PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/regional_control -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/regional_control +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/regional_control Checking test 045 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2032,28 +2032,28 @@ Checking test 045 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 338.665369 -0:The maximum resident set size (KB) = 606596 +0:The total amount of wall time = 328.337880 +0:The maximum resident set size (KB) = 606580 Test 045 regional_control PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/regional_control -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/regional_restart +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/regional_restart Checking test 046 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 172.769977 -0:The maximum resident set size (KB) = 594212 +0:The total amount of wall time = 173.446544 +0:The maximum resident set size (KB) = 594116 Test 046 regional_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/regional_control -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/regional_decomp +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/regional_decomp Checking test 047 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2064,14 +2064,14 @@ Checking test 047 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 357.709974 -0:The maximum resident set size (KB) = 599160 +0:The total amount of wall time = 356.165649 +0:The maximum resident set size (KB) = 599152 Test 047 regional_decomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/regional_control -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/regional_2threads +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/regional_2threads Checking test 048 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2082,14 +2082,14 @@ Checking test 048 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 198.478659 -0:The maximum resident set size (KB) = 592628 +0:The total amount of wall time = 202.509745 +0:The maximum resident set size (KB) = 593308 Test 048 regional_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/regional_noquilt -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/regional_noquilt +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/regional_noquilt Checking test 049 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2097,28 +2097,28 @@ Checking test 049 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -0:The total amount of wall time = 363.752758 -0:The maximum resident set size (KB) = 601428 +0:The total amount of wall time = 366.138249 +0:The maximum resident set size (KB) = 601472 Test 049 regional_noquilt PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/regional_netcdf_parallel -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/regional_netcdf_parallel +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/regional_netcdf_parallel Checking test 050 regional_netcdf_parallel results .... Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf006.nc .........OK Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc .........OK + Comparing phyf006.nc ............ALT CHECK......OK -0:The total amount of wall time = 334.338104 -0:The maximum resident set size (KB) = 593508 +0:The total amount of wall time = 334.434515 +0:The maximum resident set size (KB) = 593500 Test 050 regional_netcdf_parallel PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/regional_control -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/regional_2dwrtdecomp +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/regional_2dwrtdecomp Checking test 051 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2129,14 +2129,14 @@ Checking test 051 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 338.096592 -0:The maximum resident set size (KB) = 606612 +0:The total amount of wall time = 342.301633 +0:The maximum resident set size (KB) = 606664 Test 051 regional_2dwrtdecomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/fv3_regional_wofs -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/regional_wofs +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/regional_wofs Checking test 052 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2147,14 +2147,14 @@ Checking test 052 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 422.879183 -0:The maximum resident set size (KB) = 274608 +0:The total amount of wall time = 425.189023 +0:The maximum resident set size (KB) = 274580 Test 052 regional_wofs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_control -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/rap_control +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/rap_control Checking test 053 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2201,14 +2201,14 @@ Checking test 053 rap_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 458.296696 -0:The maximum resident set size (KB) = 828324 +0:The total amount of wall time = 461.274709 +0:The maximum resident set size (KB) = 828840 Test 053 rap_control PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_rrtmgp -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/rap_rrtmgp +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/rap_rrtmgp Checking test 054 rap_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2255,14 +2255,14 @@ Checking test 054 rap_rrtmgp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 524.320444 -0:The maximum resident set size (KB) = 951672 +0:The total amount of wall time = 520.316136 +0:The maximum resident set size (KB) = 951644 Test 054 rap_rrtmgp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/regional_spp_sppt_shum_skeb -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/regional_spp_sppt_shum_skeb +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/regional_spp_sppt_shum_skeb Checking test 055 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2273,14 +2273,14 @@ Checking test 055 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -0:The total amount of wall time = 257.907142 -0:The maximum resident set size (KB) = 932332 +0:The total amount of wall time = 255.782064 +0:The maximum resident set size (KB) = 932416 Test 055 regional_spp_sppt_shum_skeb PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_control -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/rap_decomp +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/rap_decomp Checking test 056 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2327,14 +2327,14 @@ Checking test 056 rap_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 480.203296 -0:The maximum resident set size (KB) = 827240 +0:The total amount of wall time = 486.381482 +0:The maximum resident set size (KB) = 827188 Test 056 rap_decomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_control -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/rap_2threads +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/rap_2threads Checking test 057 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2381,14 +2381,14 @@ Checking test 057 rap_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 437.001526 -0:The maximum resident set size (KB) = 884428 +0:The total amount of wall time = 436.600831 +0:The maximum resident set size (KB) = 884400 Test 057 rap_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_control -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/rap_restart +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/rap_restart Checking test 058 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2427,14 +2427,14 @@ Checking test 058 rap_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 234.279161 -0:The maximum resident set size (KB) = 572616 +0:The total amount of wall time = 231.915040 +0:The maximum resident set size (KB) = 572560 Test 058 rap_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_sfcdiff -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/rap_sfcdiff +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/rap_sfcdiff Checking test 059 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2481,14 +2481,14 @@ Checking test 059 rap_sfcdiff results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 452.506954 -0:The maximum resident set size (KB) = 825244 +0:The total amount of wall time = 453.213211 +0:The maximum resident set size (KB) = 825192 Test 059 rap_sfcdiff PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_sfcdiff -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/rap_sfcdiff_decomp +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/rap_sfcdiff_decomp Checking test 060 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2535,14 +2535,14 @@ Checking test 060 rap_sfcdiff_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 479.036812 -0:The maximum resident set size (KB) = 827100 +0:The total amount of wall time = 482.289893 +0:The maximum resident set size (KB) = 826780 Test 060 rap_sfcdiff_decomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_sfcdiff -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/rap_sfcdiff_restart +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/rap_sfcdiff_restart Checking test 061 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2581,14 +2581,14 @@ Checking test 061 rap_sfcdiff_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 340.699398 -0:The maximum resident set size (KB) = 572440 +0:The total amount of wall time = 341.690026 +0:The maximum resident set size (KB) = 570288 Test 061 rap_sfcdiff_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/hrrr_control -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/hrrr_control +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/hrrr_control Checking test 062 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2635,14 +2635,14 @@ Checking test 062 hrrr_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 436.014729 -0:The maximum resident set size (KB) = 822220 +0:The total amount of wall time = 438.107101 +0:The maximum resident set size (KB) = 821772 Test 062 hrrr_control PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/hrrr_control -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/hrrr_control_decomp +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/hrrr_control_decomp Checking test 063 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2689,14 +2689,14 @@ Checking test 063 hrrr_control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 451.233305 -0:The maximum resident set size (KB) = 822204 +0:The total amount of wall time = 453.953591 +0:The maximum resident set size (KB) = 822216 Test 063 hrrr_control_decomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/hrrr_control -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/hrrr_control_2threads +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/hrrr_control_2threads Checking test 064 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2743,14 +2743,14 @@ Checking test 064 hrrr_control_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 409.504420 -0:The maximum resident set size (KB) = 878888 +0:The total amount of wall time = 411.733809 +0:The maximum resident set size (KB) = 878336 Test 064 hrrr_control_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/hrrr_control -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/hrrr_control_restart +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/hrrr_control_restart Checking test 065 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2789,14 +2789,14 @@ Checking test 065 hrrr_control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 324.159808 -0:The maximum resident set size (KB) = 567208 +0:The total amount of wall time = 329.278463 +0:The maximum resident set size (KB) = 567164 Test 065 hrrr_control_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/rrfs_v1beta -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/rrfs_v1beta +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/rrfs_v1beta Checking test 066 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2843,14 +2843,14 @@ Checking test 066 rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 447.147151 -0:The maximum resident set size (KB) = 820452 +0:The total amount of wall time = 452.444469 +0:The maximum resident set size (KB) = 820540 Test 066 rrfs_v1beta PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/rrfs_v1nssl -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/rrfs_v1nssl +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/rrfs_v1nssl Checking test 067 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2865,14 +2865,14 @@ Checking test 067 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 556.192656 -0:The maximum resident set size (KB) = 509240 +0:The total amount of wall time = 550.074584 +0:The maximum resident set size (KB) = 509236 Test 067 rrfs_v1nssl PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/rrfs_v1nssl_nohailnoccn +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/rrfs_v1nssl_nohailnoccn Checking test 068 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2887,14 +2887,14 @@ Checking test 068 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 540.266232 -0:The maximum resident set size (KB) = 505188 +0:The total amount of wall time = 541.353636 +0:The maximum resident set size (KB) = 505116 Test 068 rrfs_v1nssl_nohailnoccn PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/rrfs_conus13km_hrrr_warm -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/rrfs_conus13km_hrrr_warm +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/rrfs_conus13km_hrrr_warm Checking test 069 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2903,14 +2903,14 @@ Checking test 069 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 126.951475 -0:The maximum resident set size (KB) = 641260 +0:The total amount of wall time = 128.604164 +0:The maximum resident set size (KB) = 641240 Test 069 rrfs_conus13km_hrrr_warm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/rrfs_smoke_conus13km_hrrr_warm Checking test 070 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2919,14 +2919,14 @@ Checking test 070 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 143.571778 -0:The maximum resident set size (KB) = 656624 +0:The total amount of wall time = 144.874220 +0:The maximum resident set size (KB) = 656600 Test 070 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/rrfs_conus13km_radar_tten_warm +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/rrfs_conus13km_radar_tten_warm Checking test 071 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2935,14 +2935,14 @@ Checking test 071 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 129.689239 -0:The maximum resident set size (KB) = 644032 +0:The total amount of wall time = 130.846589 +0:The maximum resident set size (KB) = 644036 Test 071 rrfs_conus13km_radar_tten_warm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/rrfs_conus13km_hrrr_warm -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/rrfs_conus13km_hrrr_warm_2threads +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/rrfs_conus13km_hrrr_warm_2threads Checking test 072 rrfs_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2951,14 +2951,14 @@ Checking test 072 rrfs_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 78.728316 -0:The maximum resident set size (KB) = 643956 +0:The total amount of wall time = 80.532836 +0:The maximum resident set size (KB) = 642256 Test 072 rrfs_conus13km_hrrr_warm_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/rrfs_conus13km_radar_tten_warm_2threads +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/rrfs_conus13km_radar_tten_warm_2threads Checking test 073 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2967,14 +2967,14 @@ Checking test 073 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 79.526387 -0:The maximum resident set size (KB) = 645356 +0:The total amount of wall time = 80.569195 +0:The maximum resident set size (KB) = 645492 Test 073 rrfs_conus13km_radar_tten_warm_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/control_csawmg -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/control_csawmg +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/control_csawmg Checking test 074 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2985,14 +2985,14 @@ Checking test 074 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 398.578475 -0:The maximum resident set size (KB) = 532244 +0:The total amount of wall time = 395.952697 +0:The maximum resident set size (KB) = 532212 Test 074 control_csawmg PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/control_csawmgt -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/control_csawmgt +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/control_csawmgt Checking test 075 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3003,14 +3003,14 @@ Checking test 075 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 392.389617 -0:The maximum resident set size (KB) = 531360 +0:The total amount of wall time = 393.072289 +0:The maximum resident set size (KB) = 531388 Test 075 control_csawmgt PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/control_ras -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/control_ras +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/control_ras Checking test 076 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3021,82 +3021,82 @@ Checking test 076 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 203.686566 -0:The maximum resident set size (KB) = 490232 +0:The total amount of wall time = 206.877156 +0:The maximum resident set size (KB) = 490280 Test 076 control_ras PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/control_wam -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/control_wam +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/control_wam Checking test 077 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -0:The total amount of wall time = 129.139866 -0:The maximum resident set size (KB) = 207800 +0:The total amount of wall time = 128.594881 +0:The maximum resident set size (KB) = 207772 Test 077 control_wam PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/rrfs_conus13km_hrrr_warm_debug +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/rrfs_conus13km_hrrr_warm_debug Checking test 078 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 757.523317 -0:The maximum resident set size (KB) = 672236 +0:The total amount of wall time = 760.843355 +0:The maximum resident set size (KB) = 672280 Test 078 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/rrfs_conus13km_radar_tten_warm_debug -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/rrfs_conus13km_radar_tten_warm_debug +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/rrfs_conus13km_radar_tten_warm_debug Checking test 079 rrfs_conus13km_radar_tten_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 757.494456 -0:The maximum resident set size (KB) = 674128 +0:The total amount of wall time = 763.079121 +0:The maximum resident set size (KB) = 674308 Test 079 rrfs_conus13km_radar_tten_warm_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/control_debug -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/control_debug +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/control_debug Checking test 080 control_debug 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.079761 -0:The maximum resident set size (KB) = 625556 +0:The total amount of wall time = 162.093301 +0:The maximum resident set size (KB) = 626032 Test 080 control_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/control_debug -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/control_2threads_debug +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/control_2threads_debug Checking test 081 control_2threads_debug 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.207011 -0:The maximum resident set size (KB) = 670396 +0:The total amount of wall time = 152.877750 +0:The maximum resident set size (KB) = 672132 Test 081 control_2threads_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/control_CubedSphereGrid_debug -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/control_CubedSphereGrid_debug +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/control_CubedSphereGrid_debug Checking test 082 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3123,348 +3123,348 @@ Checking test 082 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -0:The total amount of wall time = 175.723134 -0:The maximum resident set size (KB) = 626220 +0:The total amount of wall time = 175.418239 +0:The maximum resident set size (KB) = 626912 Test 082 control_CubedSphereGrid_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/control_wrtGauss_netcdf_parallel_debug +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/control_wrtGauss_netcdf_parallel_debug Checking test 083 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 163.584595 -0:The maximum resident set size (KB) = 626056 +0:The total amount of wall time = 165.797751 +0:The maximum resident set size (KB) = 626004 Test 083 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/control_stochy_debug -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/control_stochy_debug +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/control_stochy_debug Checking test 084 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 182.883515 -0:The maximum resident set size (KB) = 630252 +0:The total amount of wall time = 186.845928 +0:The maximum resident set size (KB) = 629688 Test 084 control_stochy_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/control_lndp_debug -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/control_lndp_debug +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/control_lndp_debug Checking test 085 control_lndp_debug 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.567457 -0:The maximum resident set size (KB) = 628676 +0:The total amount of wall time = 167.310229 +0:The maximum resident set size (KB) = 628720 Test 085 control_lndp_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/control_csawmg_debug -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/control_csawmg_debug +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/control_csawmg_debug Checking test 086 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 257.022280 -0:The maximum resident set size (KB) = 672872 +0:The total amount of wall time = 259.949652 +0:The maximum resident set size (KB) = 673220 Test 086 control_csawmg_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/control_csawmgt_debug -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/control_csawmgt_debug +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/control_csawmgt_debug Checking test 087 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 253.358996 -0:The maximum resident set size (KB) = 673336 +0:The total amount of wall time = 255.318971 +0:The maximum resident set size (KB) = 673032 Test 087 control_csawmgt_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/control_ras_debug -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/control_ras_debug +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/control_ras_debug Checking test 088 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 166.840596 -0:The maximum resident set size (KB) = 635648 +0:The total amount of wall time = 166.544524 +0:The maximum resident set size (KB) = 635736 Test 088 control_ras_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/control_diag_debug -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/control_diag_debug +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/control_diag_debug Checking test 089 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 169.190949 -0:The maximum resident set size (KB) = 683704 +0:The total amount of wall time = 170.772169 +0:The maximum resident set size (KB) = 683772 Test 089 control_diag_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/control_debug_p8 -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/control_debug_p8 +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/control_debug_p8 Checking test 090 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 183.457758 -0:The maximum resident set size (KB) = 1448912 +0:The total amount of wall time = 186.815917 +0:The maximum resident set size (KB) = 1448984 Test 090 control_debug_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/regional_debug -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/regional_debug +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/regional_debug Checking test 091 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -0:The total amount of wall time = 1035.707582 -0:The maximum resident set size (KB) = 625956 +0:The total amount of wall time = 1038.079996 +0:The maximum resident set size (KB) = 623836 Test 091 regional_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_control_debug -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/rap_control_debug +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/rap_control_debug Checking test 092 rap_control_debug 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.109967 -0:The maximum resident set size (KB) = 991340 +0:The total amount of wall time = 292.571446 +0:The maximum resident set size (KB) = 991308 Test 092 rap_control_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/hrrr_control_debug -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/hrrr_control_debug +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/hrrr_control_debug Checking test 093 hrrr_control_debug 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.569377 -0:The maximum resident set size (KB) = 989000 +0:The total amount of wall time = 292.524995 +0:The maximum resident set size (KB) = 989068 Test 093 hrrr_control_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_control_debug -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/rap_unified_drag_suite_debug +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/rap_unified_drag_suite_debug Checking test 094 rap_unified_drag_suite_debug 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.112756 -0:The maximum resident set size (KB) = 991480 +0:The total amount of wall time = 298.471006 +0:The maximum resident set size (KB) = 991432 Test 094 rap_unified_drag_suite_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_diag_debug -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/rap_diag_debug +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/rap_diag_debug Checking test 095 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 307.372553 -0:The maximum resident set size (KB) = 1075956 +0:The total amount of wall time = 309.735063 +0:The maximum resident set size (KB) = 1075972 Test 095 rap_diag_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_cires_ugwp_debug -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/rap_cires_ugwp_debug +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/rap_cires_ugwp_debug Checking test 096 rap_cires_ugwp_debug 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.700791 -0:The maximum resident set size (KB) = 992720 +0:The total amount of wall time = 299.454924 +0:The maximum resident set size (KB) = 992768 Test 096 rap_cires_ugwp_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_cires_ugwp_debug -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/rap_unified_ugwp_debug +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/rap_unified_ugwp_debug Checking test 097 rap_unified_ugwp_debug 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.118641 -0:The maximum resident set size (KB) = 991076 +0:The total amount of wall time = 300.546059 +0:The maximum resident set size (KB) = 991596 Test 097 rap_unified_ugwp_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_lndp_debug -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/rap_lndp_debug +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/rap_lndp_debug Checking test 098 rap_lndp_debug 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.011259 -0:The maximum resident set size (KB) = 992052 +0:The total amount of wall time = 296.243984 +0:The maximum resident set size (KB) = 992152 Test 098 rap_lndp_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_flake_debug -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/rap_flake_debug +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/rap_flake_debug Checking test 099 rap_flake_debug 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.074052 -0:The maximum resident set size (KB) = 990800 +0:The total amount of wall time = 294.834286 +0:The maximum resident set size (KB) = 990732 Test 099 rap_flake_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_progcld_thompson_debug -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/rap_progcld_thompson_debug +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/rap_progcld_thompson_debug Checking test 100 rap_progcld_thompson_debug 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.416565 -0:The maximum resident set size (KB) = 991820 +0:The total amount of wall time = 293.271191 +0:The maximum resident set size (KB) = 991684 Test 100 rap_progcld_thompson_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_noah_debug -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/rap_noah_debug +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/rap_noah_debug Checking test 101 rap_noah_debug 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.593877 -0:The maximum resident set size (KB) = 991420 +0:The total amount of wall time = 286.510947 +0:The maximum resident set size (KB) = 991496 Test 101 rap_noah_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_rrtmgp_debug -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/rap_rrtmgp_debug +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/rap_rrtmgp_debug Checking test 102 rap_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 489.181429 -0:The maximum resident set size (KB) = 1121028 +0:The total amount of wall time = 492.618453 +0:The maximum resident set size (KB) = 1121044 Test 102 rap_rrtmgp_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_sfcdiff_debug -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/rap_sfcdiff_debug +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/rap_sfcdiff_debug Checking test 103 rap_sfcdiff_debug 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.437482 -0:The maximum resident set size (KB) = 990980 +0:The total amount of wall time = 296.884616 +0:The maximum resident set size (KB) = 991080 Test 103 rap_sfcdiff_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/rap_noah_sfcdiff_cires_ugwp_debug Checking test 104 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 475.189778 -0:The maximum resident set size (KB) = 991104 +0:The total amount of wall time = 477.478732 +0:The maximum resident set size (KB) = 991348 Test 104 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/rrfs_v1beta_debug -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/rrfs_v1beta_debug +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/rrfs_v1beta_debug Checking test 105 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 288.103435 -0:The maximum resident set size (KB) = 987224 +0:The total amount of wall time = 291.102595 +0:The maximum resident set size (KB) = 987376 Test 105 rrfs_v1beta_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/control_wam_debug -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/control_wam_debug +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/control_wam_debug Checking test 106 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -0:The total amount of wall time = 297.224060 -0:The maximum resident set size (KB) = 241284 +0:The total amount of wall time = 296.811033 +0:The maximum resident set size (KB) = 241004 Test 106 control_wam_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 107 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3475,14 +3475,14 @@ Checking test 107 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -0:The total amount of wall time = 236.145791 -0:The maximum resident set size (KB) = 831536 +0:The total amount of wall time = 238.109789 +0:The maximum resident set size (KB) = 831952 Test 107 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/rap_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/rap_control_dyn32_phy32 Checking test 108 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3529,14 +3529,14 @@ Checking test 108 rap_control_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 368.538221 -0:The maximum resident set size (KB) = 709284 +0:The total amount of wall time = 371.194911 +0:The maximum resident set size (KB) = 709140 Test 108 rap_control_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/hrrr_control_dyn32_phy32 Checking test 109 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3583,14 +3583,14 @@ Checking test 109 hrrr_control_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 196.752696 -0:The maximum resident set size (KB) = 708052 +0:The total amount of wall time = 197.380043 +0:The maximum resident set size (KB) = 708028 Test 109 hrrr_control_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/rap_2threads_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/rap_2threads_dyn32_phy32 Checking test 110 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3637,14 +3637,14 @@ Checking test 110 rap_2threads_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 352.039296 -0:The maximum resident set size (KB) = 752124 +0:The total amount of wall time = 354.272074 +0:The maximum resident set size (KB) = 751756 Test 110 rap_2threads_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/hrrr_control_2threads_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/hrrr_control_2threads_dyn32_phy32 Checking test 111 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3691,14 +3691,14 @@ Checking test 111 hrrr_control_2threads_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 183.712876 -0:The maximum resident set size (KB) = 744832 +0:The total amount of wall time = 183.614593 +0:The maximum resident set size (KB) = 745008 Test 111 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/hrrr_control_decomp_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/hrrr_control_decomp_dyn32_phy32 Checking test 112 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3745,14 +3745,14 @@ Checking test 112 hrrr_control_decomp_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 206.716179 -0:The maximum resident set size (KB) = 706948 +0:The total amount of wall time = 206.453632 +0:The maximum resident set size (KB) = 706960 Test 112 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/rap_restart_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/rap_restart_dyn32_phy32 Checking test 113 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3791,14 +3791,14 @@ Checking test 113 rap_restart_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 278.149191 -0:The maximum resident set size (KB) = 543832 +0:The total amount of wall time = 280.711077 +0:The maximum resident set size (KB) = 543744 Test 113 rap_restart_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/hrrr_control_restart_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/hrrr_control_restart_dyn32_phy32 Checking test 114 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3837,14 +3837,14 @@ Checking test 114 hrrr_control_restart_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 101.254461 -0:The maximum resident set size (KB) = 541324 +0:The total amount of wall time = 102.320782 +0:The maximum resident set size (KB) = 541068 Test 114 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_control_dyn64_phy32 -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/rap_control_dyn64_phy32 +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/rap_control_dyn64_phy32 Checking test 115 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3891,81 +3891,81 @@ Checking test 115 rap_control_dyn64_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 258.993621 -0:The maximum resident set size (KB) = 728412 +0:The total amount of wall time = 260.754003 +0:The maximum resident set size (KB) = 728484 Test 115 rap_control_dyn64_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_control_debug_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/rap_control_debug_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/rap_control_debug_dyn32_phy32 Checking test 116 rap_control_debug_dyn32_phy32 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.878243 -0:The maximum resident set size (KB) = 877024 +0:The total amount of wall time = 291.003578 +0:The maximum resident set size (KB) = 876984 Test 116 rap_control_debug_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/hrrr_control_debug_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/hrrr_control_debug_dyn32_phy32 Checking test 117 hrrr_control_debug_dyn32_phy32 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.302338 -0:The maximum resident set size (KB) = 875952 +0:The total amount of wall time = 281.569828 +0:The maximum resident set size (KB) = 875988 Test 117 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_control_debug_dyn64_phy32 -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/rap_control_dyn64_phy32_debug +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/rap_control_dyn64_phy32_debug Checking test 118 rap_control_dyn64_phy32_debug 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.507675 -0:The maximum resident set size (KB) = 897304 +0:The total amount of wall time = 293.932102 +0:The maximum resident set size (KB) = 897372 Test 118 rap_control_dyn64_phy32_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/hafs_regional_atm -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/hafs_regional_atm +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/hafs_regional_atm Checking test 119 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -0:The total amount of wall time = 268.177239 -0:The maximum resident set size (KB) = 688952 +0:The total amount of wall time = 269.310652 +0:The maximum resident set size (KB) = 692644 Test 119 hafs_regional_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/hafs_regional_atm_thompson_gfdlsf +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/hafs_regional_atm_thompson_gfdlsf Checking test 120 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -0:The total amount of wall time = 306.948419 -0:The maximum resident set size (KB) = 1052252 +0:The total amount of wall time = 303.054683 +0:The maximum resident set size (KB) = 1054468 Test 120 hafs_regional_atm_thompson_gfdlsf PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/hafs_regional_atm_ocn -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/hafs_regional_atm_ocn +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/hafs_regional_atm_ocn Checking test 121 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3974,14 +3974,14 @@ Checking test 121 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 457.938026 -0:The maximum resident set size (KB) = 722172 +0:The total amount of wall time = 428.490924 +0:The maximum resident set size (KB) = 722420 Test 121 hafs_regional_atm_ocn PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/hafs_regional_atm_wav -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/hafs_regional_atm_wav +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/hafs_regional_atm_wav Checking test 122 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3990,14 +3990,14 @@ Checking test 122 hafs_regional_atm_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 1001.751978 -0:The maximum resident set size (KB) = 752592 +0:The total amount of wall time = 1076.347731 +0:The maximum resident set size (KB) = 752532 Test 122 hafs_regional_atm_wav PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/hafs_regional_atm_ocn_wav -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/hafs_regional_atm_ocn_wav +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/hafs_regional_atm_ocn_wav Checking test 123 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4008,28 +4008,28 @@ Checking test 123 hafs_regional_atm_ocn_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 1148.396946 -0:The maximum resident set size (KB) = 767728 +0:The total amount of wall time = 1162.491919 +0:The maximum resident set size (KB) = 767416 Test 123 hafs_regional_atm_ocn_wav PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/hafs_regional_1nest_atm -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/hafs_regional_1nest_atm +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/hafs_regional_1nest_atm Checking test 124 hafs_regional_1nest_atm 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 = 412.181259 -0:The maximum resident set size (KB) = 278600 +0:The total amount of wall time = 411.455007 +0:The maximum resident set size (KB) = 278560 Test 124 hafs_regional_1nest_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/hafs_regional_telescopic_2nests_atm +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/hafs_regional_telescopic_2nests_atm Checking test 125 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4038,28 +4038,28 @@ Checking test 125 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -0:The total amount of wall time = 456.254065 -0:The maximum resident set size (KB) = 292180 +0:The total amount of wall time = 455.240025 +0:The maximum resident set size (KB) = 292536 Test 125 hafs_regional_telescopic_2nests_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/hafs_global_1nest_atm -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/hafs_global_1nest_atm +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/hafs_global_1nest_atm Checking test 126 hafs_global_1nest_atm 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 = 184.212198 -0:The maximum resident set size (KB) = 188320 +0:The total amount of wall time = 185.301128 +0:The maximum resident set size (KB) = 188064 Test 126 hafs_global_1nest_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/hafs_global_multiple_4nests_atm -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/hafs_global_multiple_4nests_atm +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/hafs_global_multiple_4nests_atm Checking test 127 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4077,14 +4077,14 @@ Checking test 127 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK -0:The total amount of wall time = 553.779214 -0:The maximum resident set size (KB) = 265760 +0:The total amount of wall time = 561.650108 +0:The maximum resident set size (KB) = 266228 Test 127 hafs_global_multiple_4nests_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/hafs_regional_specified_moving_1nest_atm +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/hafs_regional_specified_moving_1nest_atm Checking test 128 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4093,28 +4093,28 @@ Checking test 128 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -0:The total amount of wall time = 248.129887 -0:The maximum resident set size (KB) = 290528 +0:The total amount of wall time = 249.045384 +0:The maximum resident set size (KB) = 287680 Test 128 hafs_regional_specified_moving_1nest_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/hafs_regional_storm_following_1nest_atm +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/hafs_regional_storm_following_1nest_atm Checking test 129 hafs_regional_storm_following_1nest_atm 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 = 233.175558 -0:The maximum resident set size (KB) = 290988 +0:The total amount of wall time = 235.064171 +0:The maximum resident set size (KB) = 290320 Test 129 hafs_regional_storm_following_1nest_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/hafs_regional_storm_following_1nest_atm_ocn +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/hafs_regional_storm_following_1nest_atm_ocn Checking test 130 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4123,14 +4123,14 @@ Checking test 130 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -0:The total amount of wall time = 268.214035 -0:The maximum resident set size (KB) = 320296 +0:The total amount of wall time = 265.713298 +0:The maximum resident set size (KB) = 320260 Test 130 hafs_regional_storm_following_1nest_atm_ocn PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 131 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4141,28 +4141,28 @@ Checking test 131 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK -0:The total amount of wall time = 720.752603 -0:The maximum resident set size (KB) = 384916 +0:The total amount of wall time = 778.721516 +0:The maximum resident set size (KB) = 385600 Test 131 hafs_regional_storm_following_1nest_atm_ocn_wav PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/hafs_global_storm_following_1nest_atm -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/hafs_global_storm_following_1nest_atm +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/hafs_global_storm_following_1nest_atm Checking test 132 hafs_global_storm_following_1nest_atm 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 = 69.373763 -0:The maximum resident set size (KB) = 206016 +0:The total amount of wall time = 71.195447 +0:The maximum resident set size (KB) = 206060 Test 132 hafs_global_storm_following_1nest_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/hafs_regional_docn -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/hafs_regional_docn +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/hafs_regional_docn Checking test 133 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4170,14 +4170,14 @@ Checking test 133 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 424.089539 -0:The maximum resident set size (KB) = 738448 +0:The total amount of wall time = 421.682083 +0:The maximum resident set size (KB) = 737852 Test 133 hafs_regional_docn PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/hafs_regional_docn_oisst -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/hafs_regional_docn_oisst +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/hafs_regional_docn_oisst Checking test 134 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4185,131 +4185,131 @@ Checking test 134 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 422.378282 -0:The maximum resident set size (KB) = 717500 +0:The total amount of wall time = 421.846890 +0:The maximum resident set size (KB) = 717488 Test 134 hafs_regional_docn_oisst PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/hafs_regional_datm_cdeps -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/hafs_regional_datm_cdeps +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/hafs_regional_datm_cdeps Checking test 135 hafs_regional_datm_cdeps 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 = 1279.663893 -0:The maximum resident set size (KB) = 891596 +0:The total amount of wall time = 1280.375377 +0:The maximum resident set size (KB) = 891520 Test 135 hafs_regional_datm_cdeps PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/datm_cdeps_control_cfsr +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/datm_cdeps_control_cfsr Checking test 136 datm_cdeps_control_cfsr results .... Comparing RESTART/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 = 167.666738 -0:The maximum resident set size (KB) = 720232 +0:The total amount of wall time = 167.402633 +0:The maximum resident set size (KB) = 720236 Test 136 datm_cdeps_control_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/datm_cdeps_restart_cfsr +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/datm_cdeps_restart_cfsr Checking test 137 datm_cdeps_restart_cfsr results .... Comparing RESTART/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 = 102.207357 -0:The maximum resident set size (KB) = 708516 +0:The total amount of wall time = 101.509491 +0:The maximum resident set size (KB) = 708600 Test 137 datm_cdeps_restart_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/datm_cdeps_control_gefs -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/datm_cdeps_control_gefs +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/datm_cdeps_control_gefs Checking test 138 datm_cdeps_control_gefs results .... Comparing RESTART/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 = 161.045727 -0:The maximum resident set size (KB) = 610908 +0:The total amount of wall time = 158.192663 +0:The maximum resident set size (KB) = 610884 Test 138 datm_cdeps_control_gefs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/datm_cdeps_iau_gefs -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/datm_cdeps_iau_gefs +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/datm_cdeps_iau_gefs Checking test 139 datm_cdeps_iau_gefs results .... Comparing RESTART/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 = 163.577409 -0:The maximum resident set size (KB) = 610900 +0:The total amount of wall time = 164.129252 +0:The maximum resident set size (KB) = 610864 Test 139 datm_cdeps_iau_gefs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/datm_cdeps_stochy_gefs -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/datm_cdeps_stochy_gefs +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/datm_cdeps_stochy_gefs Checking test 140 datm_cdeps_stochy_gefs results .... Comparing RESTART/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 = 163.840109 -0:The maximum resident set size (KB) = 610924 +0:The total amount of wall time = 164.780293 +0:The maximum resident set size (KB) = 610940 Test 140 datm_cdeps_stochy_gefs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/datm_cdeps_ciceC_cfsr -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/datm_cdeps_ciceC_cfsr +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/datm_cdeps_ciceC_cfsr Checking test 141 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/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 = 168.859037 -0:The maximum resident set size (KB) = 720296 +0:The total amount of wall time = 169.524268 +0:The maximum resident set size (KB) = 720244 Test 141 datm_cdeps_ciceC_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/datm_cdeps_bulk_cfsr -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/datm_cdeps_bulk_cfsr +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/datm_cdeps_bulk_cfsr Checking test 142 datm_cdeps_bulk_cfsr results .... Comparing RESTART/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 = 169.621475 -0:The maximum resident set size (KB) = 720244 +0:The total amount of wall time = 169.393004 +0:The maximum resident set size (KB) = 720192 Test 142 datm_cdeps_bulk_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/datm_cdeps_bulk_gefs -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/datm_cdeps_bulk_gefs +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/datm_cdeps_bulk_gefs Checking test 143 datm_cdeps_bulk_gefs results .... Comparing RESTART/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 = 160.396293 -0:The maximum resident set size (KB) = 610940 +0:The total amount of wall time = 161.378375 +0:The maximum resident set size (KB) = 610900 Test 143 datm_cdeps_bulk_gefs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/datm_cdeps_mx025_cfsr -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/datm_cdeps_mx025_cfsr +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/datm_cdeps_mx025_cfsr Checking test 144 datm_cdeps_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -4318,14 +4318,14 @@ Checking test 144 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK -0:The total amount of wall time = 427.214014 -0:The maximum resident set size (KB) = 517696 +0:The total amount of wall time = 433.168616 +0:The maximum resident set size (KB) = 517668 Test 144 datm_cdeps_mx025_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/datm_cdeps_mx025_gefs -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/datm_cdeps_mx025_gefs +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/datm_cdeps_mx025_gefs Checking test 145 datm_cdeps_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -4334,64 +4334,64 @@ Checking test 145 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK -0:The total amount of wall time = 423.821241 -0:The maximum resident set size (KB) = 498008 +0:The total amount of wall time = 434.728203 +0:The maximum resident set size (KB) = 497996 Test 145 datm_cdeps_mx025_gefs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/datm_cdeps_multiple_files_cfsr +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/datm_cdeps_multiple_files_cfsr Checking test 146 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 168.013426 -0:The maximum resident set size (KB) = 720204 +0:The total amount of wall time = 167.674098 +0:The maximum resident set size (KB) = 720264 Test 146 datm_cdeps_multiple_files_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/datm_cdeps_3072x1536_cfsr +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/datm_cdeps_3072x1536_cfsr Checking test 147 datm_cdeps_3072x1536_cfsr results .... Comparing RESTART/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 = 271.212120 -0:The maximum resident set size (KB) = 1944740 +0:The total amount of wall time = 256.356970 +0:The maximum resident set size (KB) = 1913652 Test 147 datm_cdeps_3072x1536_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/datm_cdeps_gfs -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/datm_cdeps_gfs +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/datm_cdeps_gfs Checking test 148 datm_cdeps_gfs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 270.572321 -0:The maximum resident set size (KB) = 1913652 +0:The total amount of wall time = 270.555304 +0:The maximum resident set size (KB) = 1945628 Test 148 datm_cdeps_gfs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/datm_cdeps_debug_cfsr -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/datm_cdeps_debug_cfsr +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/datm_cdeps_debug_cfsr Checking test 149 datm_cdeps_debug_cfsr results .... Comparing RESTART/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 = 460.055002 -0:The maximum resident set size (KB) = 710296 +0:The total amount of wall time = 460.523882 +0:The maximum resident set size (KB) = 721280 Test 149 datm_cdeps_debug_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/datm_cdeps_lnd_gswp3 -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/datm_cdeps_lnd_gswp3 +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/datm_cdeps_lnd_gswp3 Checking test 150 datm_cdeps_lnd_gswp3 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 @@ -4400,14 +4400,14 @@ Checking test 150 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK -0:The total amount of wall time = 10.886285 -0:The maximum resident set size (KB) = 214972 +0:The total amount of wall time = 11.168755 +0:The maximum resident set size (KB) = 213128 Test 150 datm_cdeps_lnd_gswp3 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/datm_cdeps_lnd_gswp3 -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/datm_cdeps_lnd_gswp3_rst +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/datm_cdeps_lnd_gswp3_rst Checking test 151 datm_cdeps_lnd_gswp3_rst 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 @@ -4416,14 +4416,14 @@ Checking test 151 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK -0:The total amount of wall time = 17.365642 -0:The maximum resident set size (KB) = 213100 +0:The total amount of wall time = 17.962380 +0:The maximum resident set size (KB) = 211352 Test 151 datm_cdeps_lnd_gswp3_rst PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/control_p8_atmlnd_sbs -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/control_p8_atmlnd_sbs +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/control_p8_atmlnd_sbs Checking test 152 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4508,14 +4508,14 @@ Checking test 152 control_p8_atmlnd_sbs results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK -0:The total amount of wall time = 235.724365 -0:The maximum resident set size (KB) = 1465556 +0:The total amount of wall time = 234.110726 +0:The maximum resident set size (KB) = 1465520 Test 152 control_p8_atmlnd_sbs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/control_atmwav -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/control_atmwav +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/control_atmwav Checking test 153 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4559,14 +4559,14 @@ Checking test 153 control_atmwav results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK -0:The total amount of wall time = 99.416429 -0:The maximum resident set size (KB) = 476796 +0:The total amount of wall time = 99.425058 +0:The maximum resident set size (KB) = 476892 Test 153 control_atmwav PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/atmaero_control_p8 -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/atmaero_control_p8 +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/atmaero_control_p8 Checking test 154 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4610,14 +4610,14 @@ Checking test 154 atmaero_control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 247.432731 -0:The maximum resident set size (KB) = 2706296 +0:The total amount of wall time = 255.802672 +0:The maximum resident set size (KB) = 2706300 Test 154 atmaero_control_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/atmaero_control_p8_rad -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/atmaero_control_p8_rad +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/atmaero_control_p8_rad Checking test 155 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4661,14 +4661,14 @@ Checking test 155 atmaero_control_p8_rad results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 302.208986 -0:The maximum resident set size (KB) = 2760808 +0:The total amount of wall time = 304.772883 +0:The maximum resident set size (KB) = 2760740 Test 155 atmaero_control_p8_rad PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/atmaero_control_p8_rad_micro -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/atmaero_control_p8_rad_micro +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/atmaero_control_p8_rad_micro Checking test 156 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4712,14 +4712,14 @@ Checking test 156 atmaero_control_p8_rad_micro results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 308.081716 -0:The maximum resident set size (KB) = 2766796 +0:The total amount of wall time = 307.757495 +0:The maximum resident set size (KB) = 2767044 Test 156 atmaero_control_p8_rad_micro PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221110/INTEL/regional_atmaq -working dir = /glade/scratch/jongkim/rt-1475-intel/jongkim/FV3_RT/rt_25044/regional_atmaq +working dir = /glade/scratch/jongkim/rt-1486-intel/jongkim/FV3_RT/rt_29400/regional_atmaq Checking test 157 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4735,12 +4735,12 @@ Checking test 157 regional_atmaq results .... Comparing RESTART/phy_data.nc .........OK Comparing RESTART/sfc_data.nc .........OK -0:The total amount of wall time = 1084.445223 -0:The maximum resident set size (KB) = 795096 +0:The total amount of wall time = 1087.497416 +0:The maximum resident set size (KB) = 795024 Test 157 regional_atmaq PASS REGRESSION TEST WAS SUCCESSFUL -Fri Nov 11 12:29:01 MST 2022 -Elapsed time: 01h:09m:43s. Have a nice day! +Tue Nov 15 17:33:04 MST 2022 +Elapsed time: 01h:07m:00s. Have a nice day! diff --git a/tests/RegressionTests_gaea.intel.log b/tests/RegressionTests_gaea.intel.log index b924f11f0e..63e2a44131 100644 --- a/tests/RegressionTests_gaea.intel.log +++ b/tests/RegressionTests_gaea.intel.log @@ -1,34 +1,34 @@ -Fri Nov 11 00:11:43 EST 2022 +Tue Nov 15 19:18:25 EST 2022 Start Regression test -Compile 001 elapsed time 643 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 626 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 265 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 004 elapsed time 244 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 516 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 006 elapsed time 488 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 007 elapsed time 473 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 001 elapsed time 687 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 673 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 411 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 004 elapsed time 249 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 531 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 006 elapsed time 643 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 007 elapsed time 449 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release Compile 008 elapsed time 454 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 009 elapsed time 435 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 417 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 677 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 012 elapsed time 184 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 013 elapsed time 389 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 014 elapsed time 418 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 015 elapsed time 182 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 190 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 017 elapsed time 627 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 018 elapsed time 586 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 019 elapsed time 270 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 020 elapsed time 143 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 021 elapsed time 95 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 022 elapsed time 438 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 562 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 024 elapsed time 413 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 025 elapsed time 406 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 009 elapsed time 434 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 421 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 682 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 012 elapsed time 180 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 013 elapsed time 387 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 elapsed time 414 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 015 elapsed time 184 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 271 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 017 elapsed time 633 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 018 elapsed time 646 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 019 elapsed time 249 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 020 elapsed time 185 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 021 elapsed time 90 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 022 elapsed time 485 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 552 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 024 elapsed time 440 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 025 elapsed time 480 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/cpld_control_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/cpld_control_p8 Checking test 001 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -93,14 +93,14 @@ Checking test 001 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 382.376846 + 0: The total amount of wall time = 371.656494 0: The maximum resident set size (KB) = 1601720 Test 001 cpld_control_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/cpld_restart_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/cpld_restart_p8 Checking test 002 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -153,14 +153,14 @@ Checking test 002 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 219.049223 - 0: The maximum resident set size (KB) = 1021696 + 0: The total amount of wall time = 303.220721 + 0: The maximum resident set size (KB) = 1035068 Test 002 cpld_restart_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/cpld_2threads_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/cpld_2threads_p8 Checking test 003 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -213,14 +213,14 @@ Checking test 003 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 487.509342 - 0: The maximum resident set size (KB) = 1760476 + 0: The total amount of wall time = 501.933500 + 0: The maximum resident set size (KB) = 1749068 Test 003 cpld_2threads_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/cpld_esmfthreads_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/cpld_esmfthreads_p8 Checking test 004 cpld_esmfthreads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -273,14 +273,14 @@ Checking test 004 cpld_esmfthreads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 401.206136 - 0: The maximum resident set size (KB) = 1791264 + 0: The total amount of wall time = 407.057308 + 0: The maximum resident set size (KB) = 1778408 Test 004 cpld_esmfthreads_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/cpld_decomp_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/cpld_decomp_p8 Checking test 005 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -333,14 +333,14 @@ Checking test 005 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 386.068167 - 0: The maximum resident set size (KB) = 1594908 + 0: The total amount of wall time = 390.862859 + 0: The maximum resident set size (KB) = 1580148 Test 005 cpld_decomp_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/cpld_mpi_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/cpld_mpi_p8 Checking test 006 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -393,14 +393,14 @@ Checking test 006 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 354.151977 - 0: The maximum resident set size (KB) = 1544820 + 0: The total amount of wall time = 329.671630 + 0: The maximum resident set size (KB) = 1544696 Test 006 cpld_mpi_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/cpld_control_ciceC_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/cpld_control_ciceC_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/cpld_control_ciceC_p8 Checking test 007 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -465,14 +465,14 @@ Checking test 007 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 381.422644 + 0: The total amount of wall time = 391.370552 0: The maximum resident set size (KB) = 1601620 Test 007 cpld_control_ciceC_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/cpld_control_c192_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/cpld_control_c192_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/cpld_control_c192_p8 Checking test 008 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -525,14 +525,14 @@ Checking test 008 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 810.667074 - 0: The maximum resident set size (KB) = 1763716 + 0: The total amount of wall time = 786.010401 + 0: The maximum resident set size (KB) = 1764068 Test 008 cpld_control_c192_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/cpld_control_c192_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/cpld_restart_c192_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/cpld_restart_c192_p8 Checking test 009 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -585,14 +585,14 @@ Checking test 009 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 481.839188 - 0: The maximum resident set size (KB) = 1933796 + 0: The total amount of wall time = 532.537826 + 0: The maximum resident set size (KB) = 1939348 Test 009 cpld_restart_c192_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/cpld_bmark_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/cpld_bmark_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/cpld_bmark_p8 Checking test 010 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -640,14 +640,14 @@ Checking test 010 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 949.218169 - 0: The maximum resident set size (KB) = 2496840 + 0: The total amount of wall time = 855.466726 + 0: The maximum resident set size (KB) = 2516900 -Test 010 cpld_bmark_p8 PASS +Test 010 cpld_bmark_p8 PASS Tries: 2 baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/cpld_bmark_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/cpld_restart_bmark_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/cpld_restart_bmark_p8 Checking test 011 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -695,70 +695,15 @@ Checking test 011 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 654.202622 - 0: The maximum resident set size (KB) = 2329432 + 0: The total amount of wall time = 466.296809 + 0: The maximum resident set size (KB) = 2332828 Test 011 cpld_restart_bmark_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/cpld_bmark_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/cpld_bmark_esmfthreads_p8 -Checking test 012 cpld_bmark_esmfthreads_p8 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/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/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 = 829.944019 - 0: The maximum resident set size (KB) = 2516744 - -Test 012 cpld_bmark_esmfthreads_p8 PASS - - baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/cpld_control_noaero_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/cpld_control_noaero_p8 -Checking test 013 cpld_control_noaero_p8 results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/cpld_control_noaero_p8 +Checking test 012 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -821,15 +766,15 @@ Checking test 013 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 270.513104 - 0: The maximum resident set size (KB) = 1452440 + 0: The total amount of wall time = 262.103152 + 0: The maximum resident set size (KB) = 1452320 -Test 013 cpld_control_noaero_p8 PASS +Test 012 cpld_control_noaero_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/cpld_control_c96_noaero_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/cpld_control_nowave_noaero_p8 -Checking test 014 cpld_control_nowave_noaero_p8 results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/cpld_control_nowave_noaero_p8 +Checking test 013 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -890,15 +835,15 @@ Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 290.869131 - 0: The maximum resident set size (KB) = 1485660 + 0: The total amount of wall time = 305.573356 + 0: The maximum resident set size (KB) = 1499264 -Test 014 cpld_control_nowave_noaero_p8 PASS +Test 013 cpld_control_nowave_noaero_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/cpld_debug_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/cpld_debug_p8 -Checking test 015 cpld_debug_p8 results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/cpld_debug_p8 +Checking test 014 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK Comparing sfcf003.tile3.nc .........OK @@ -950,15 +895,15 @@ Checking test 015 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 582.988891 - 0: The maximum resident set size (KB) = 1638172 + 0: The total amount of wall time = 583.652189 + 0: The maximum resident set size (KB) = 1621348 -Test 015 cpld_debug_p8 PASS +Test 014 cpld_debug_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/cpld_debug_noaero_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/cpld_debug_noaero_p8 -Checking test 016 cpld_debug_noaero_p8 results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/cpld_debug_noaero_p8 +Checking test 015 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK Comparing sfcf003.tile3.nc .........OK @@ -1009,15 +954,15 @@ Checking test 016 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 412.877348 - 0: The maximum resident set size (KB) = 1489780 + 0: The total amount of wall time = 395.329913 + 0: The maximum resident set size (KB) = 1465568 -Test 016 cpld_debug_noaero_p8 PASS +Test 015 cpld_debug_noaero_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/cpld_control_noaero_p8_agrid -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/cpld_control_noaero_p8_agrid -Checking test 017 cpld_control_noaero_p8_agrid results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/cpld_control_noaero_p8_agrid +Checking test 016 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -1078,15 +1023,15 @@ Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 303.051427 - 0: The maximum resident set size (KB) = 1487724 + 0: The total amount of wall time = 295.481093 + 0: The maximum resident set size (KB) = 1501648 -Test 017 cpld_control_noaero_p8_agrid PASS +Test 016 cpld_control_noaero_p8_agrid PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/cpld_control_c48 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/cpld_control_c48 -Checking test 018 cpld_control_c48 results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/cpld_control_c48 +Checking test 017 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -1135,15 +1080,15 @@ Checking test 018 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 595.418484 - 0: The maximum resident set size (KB) = 2568824 + 0: The total amount of wall time = 596.587450 + 0: The maximum resident set size (KB) = 2556044 -Test 018 cpld_control_c48 PASS +Test 017 cpld_control_c48 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/cpld_warmstart_c48 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/cpld_warmstart_c48 -Checking test 019 cpld_warmstart_c48 results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/cpld_warmstart_c48 +Checking test 018 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK Comparing sfcf006.tile3.nc .........OK @@ -1192,15 +1137,15 @@ Checking test 019 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 157.095450 - 0: The maximum resident set size (KB) = 2575536 + 0: The total amount of wall time = 157.383027 + 0: The maximum resident set size (KB) = 2582568 -Test 019 cpld_warmstart_c48 PASS +Test 018 cpld_warmstart_c48 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/cpld_warmstart_c48 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/cpld_restart_c48 -Checking test 020 cpld_restart_c48 results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/cpld_restart_c48 +Checking test 019 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK Comparing sfcf006.tile3.nc .........OK @@ -1249,15 +1194,15 @@ Checking test 020 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 104.473869 - 0: The maximum resident set size (KB) = 1991104 + 0: The total amount of wall time = 82.557891 + 0: The maximum resident set size (KB) = 1991676 -Test 020 cpld_restart_c48 PASS +Test 019 cpld_restart_c48 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/control -Checking test 021 control results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/control +Checking test 020 control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1303,15 +1248,15 @@ Checking test 021 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 161.010841 - 0: The maximum resident set size (KB) = 436368 + 0: The total amount of wall time = 143.434737 + 0: The maximum resident set size (KB) = 436404 -Test 021 control PASS +Test 020 control PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/control_decomp -Checking test 022 control_decomp results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/control_decomp +Checking test 021 control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1353,15 +1298,15 @@ Checking test 022 control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 164.752977 - 0: The maximum resident set size (KB) = 436016 + 0: The total amount of wall time = 149.222842 + 0: The maximum resident set size (KB) = 435852 -Test 022 control_decomp PASS +Test 021 control_decomp PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/control_2dwrtdecomp -Checking test 023 control_2dwrtdecomp results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/control_2dwrtdecomp +Checking test 022 control_2dwrtdecomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1371,15 +1316,15 @@ Checking test 023 control_2dwrtdecomp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 184.264017 - 0: The maximum resident set size (KB) = 436264 + 0: The total amount of wall time = 141.809138 + 0: The maximum resident set size (KB) = 436388 -Test 023 control_2dwrtdecomp PASS +Test 022 control_2dwrtdecomp PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/control_2threads -Checking test 024 control_2threads results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/control_2threads +Checking test 023 control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1421,15 +1366,15 @@ Checking test 024 control_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 228.234275 - 0: The maximum resident set size (KB) = 489692 + 0: The total amount of wall time = 184.850096 + 0: The maximum resident set size (KB) = 492572 -Test 024 control_2threads PASS +Test 023 control_2threads PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/control_restart -Checking test 025 control_restart results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/control_restart +Checking test 024 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1467,15 +1412,15 @@ Checking test 025 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 88.634362 - 0: The maximum resident set size (KB) = 174340 + 0: The total amount of wall time = 74.631415 + 0: The maximum resident set size (KB) = 174272 -Test 025 control_restart PASS +Test 024 control_restart PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/control_fhzero -Checking test 026 control_fhzero results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/control_fhzero +Checking test 025 control_fhzero results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK @@ -1517,15 +1462,15 @@ Checking test 026 control_fhzero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 139.585820 - 0: The maximum resident set size (KB) = 436452 + 0: The total amount of wall time = 133.010257 + 0: The maximum resident set size (KB) = 436232 -Test 026 control_fhzero PASS +Test 025 control_fhzero PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_CubedSphereGrid -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/control_CubedSphereGrid -Checking test 027 control_CubedSphereGrid results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/control_CubedSphereGrid +Checking test 026 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -1551,29 +1496,29 @@ Checking test 027 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 139.273956 - 0: The maximum resident set size (KB) = 436900 + 0: The total amount of wall time = 136.012507 + 0: The maximum resident set size (KB) = 436768 -Test 027 control_CubedSphereGrid PASS +Test 026 control_CubedSphereGrid PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_CubedSphereGrid_parallel -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/control_CubedSphereGrid_parallel -Checking test 028 control_CubedSphereGrid_parallel results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/control_CubedSphereGrid_parallel +Checking test 027 control_CubedSphereGrid_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 211.549269 - 0: The maximum resident set size (KB) = 436732 + 0: The total amount of wall time = 157.630930 + 0: The maximum resident set size (KB) = 436668 -Test 028 control_CubedSphereGrid_parallel PASS +Test 027 control_CubedSphereGrid_parallel PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_latlon -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/control_latlon -Checking test 029 control_latlon results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/control_latlon +Checking test 028 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1583,15 +1528,15 @@ Checking test 029 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 143.895012 - 0: The maximum resident set size (KB) = 436316 + 0: The total amount of wall time = 138.886323 + 0: The maximum resident set size (KB) = 436324 -Test 029 control_latlon PASS +Test 028 control_latlon PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/control_wrtGauss_netcdf_parallel -Checking test 030 control_wrtGauss_netcdf_parallel results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/control_wrtGauss_netcdf_parallel +Checking test 029 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1601,15 +1546,15 @@ Checking test 030 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 211.485521 - 0: The maximum resident set size (KB) = 436216 + 0: The total amount of wall time = 180.492058 + 0: The maximum resident set size (KB) = 436396 -Test 030 control_wrtGauss_netcdf_parallel PASS +Test 029 control_wrtGauss_netcdf_parallel PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_c48 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/control_c48 -Checking test 031 control_c48 results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/control_c48 +Checking test 030 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1647,15 +1592,15 @@ Checking test 031 control_c48 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0: The total amount of wall time = 370.738398 -0: The maximum resident set size (KB) = 630476 +0: The total amount of wall time = 371.134408 +0: The maximum resident set size (KB) = 631364 -Test 031 control_c48 PASS +Test 030 control_c48 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_c192 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/control_c192 -Checking test 032 control_c192 results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/control_c192 +Checking test 031 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1665,15 +1610,15 @@ Checking test 032 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 583.634799 - 0: The maximum resident set size (KB) = 540956 + 0: The total amount of wall time = 569.565703 + 0: The maximum resident set size (KB) = 540804 -Test 032 control_c192 PASS +Test 031 control_c192 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_c384 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/control_c384 -Checking test 033 control_c384 results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/control_c384 +Checking test 032 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1683,15 +1628,15 @@ Checking test 033 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 818.008235 - 0: The maximum resident set size (KB) = 811144 + 0: The total amount of wall time = 796.827178 + 0: The maximum resident set size (KB) = 813184 -Test 033 control_c384 PASS +Test 032 control_c384 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_c384gdas -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/control_c384gdas -Checking test 034 control_c384gdas results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/control_c384gdas +Checking test 033 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK Comparing atmf000.nc .........OK @@ -1733,15 +1678,15 @@ Checking test 034 control_c384gdas results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 684.182331 - 0: The maximum resident set size (KB) = 932104 + 0: The total amount of wall time = 685.918061 + 0: The maximum resident set size (KB) = 932236 -Test 034 control_c384gdas PASS +Test 033 control_c384gdas PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_c384_progsigma -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/control_c384_progsigma -Checking test 035 control_c384_progsigma results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/control_c384_progsigma +Checking test 034 control_c384_progsigma results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1751,15 +1696,15 @@ Checking test 035 control_c384_progsigma results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 814.464879 - 0: The maximum resident set size (KB) = 830640 + 0: The total amount of wall time = 814.963788 + 0: The maximum resident set size (KB) = 830404 -Test 035 control_c384_progsigma PASS +Test 034 control_c384_progsigma PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_stochy -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/control_stochy -Checking test 036 control_stochy results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/control_stochy +Checking test 035 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1769,29 +1714,29 @@ Checking test 036 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 109.724449 - 0: The maximum resident set size (KB) = 441024 + 0: The total amount of wall time = 93.556570 + 0: The maximum resident set size (KB) = 440756 -Test 036 control_stochy PASS +Test 035 control_stochy PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_stochy -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/control_stochy_restart -Checking test 037 control_stochy_restart results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/control_stochy_restart +Checking test 036 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 70.986798 - 0: The maximum resident set size (KB) = 186020 + 0: The total amount of wall time = 49.808421 + 0: The maximum resident set size (KB) = 191572 -Test 037 control_stochy_restart PASS +Test 036 control_stochy_restart PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_lndp -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/control_lndp -Checking test 038 control_lndp results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/control_lndp +Checking test 037 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1801,15 +1746,15 @@ Checking test 038 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 100.609195 - 0: The maximum resident set size (KB) = 441240 + 0: The total amount of wall time = 84.627968 + 0: The maximum resident set size (KB) = 441148 -Test 038 control_lndp PASS +Test 037 control_lndp PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_iovr4 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/control_iovr4 -Checking test 039 control_iovr4 results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/control_iovr4 +Checking test 038 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1823,15 +1768,15 @@ Checking test 039 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 156.730316 - 0: The maximum resident set size (KB) = 436364 + 0: The total amount of wall time = 141.902917 + 0: The maximum resident set size (KB) = 436440 -Test 039 control_iovr4 PASS +Test 038 control_iovr4 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_iovr5 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/control_iovr5 -Checking test 040 control_iovr5 results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/control_iovr5 +Checking test 039 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1845,15 +1790,15 @@ Checking test 040 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 141.725136 - 0: The maximum resident set size (KB) = 436296 + 0: The total amount of wall time = 142.390264 + 0: The maximum resident set size (KB) = 436408 -Test 040 control_iovr5 PASS +Test 039 control_iovr5 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/control_p8 -Checking test 041 control_p8 results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/control_p8 +Checking test 040 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1899,15 +1844,15 @@ Checking test 041 control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 180.620461 - 0: The maximum resident set size (KB) = 1379692 + 0: The total amount of wall time = 177.470853 + 0: The maximum resident set size (KB) = 1379732 -Test 041 control_p8 PASS +Test 040 control_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_p8_lndp -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/control_p8_lndp -Checking test 042 control_p8_lndp results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/control_p8_lndp +Checking test 041 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1925,15 +1870,15 @@ Checking test 042 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 333.456496 - 0: The maximum resident set size (KB) = 1404484 + 0: The total amount of wall time = 329.453705 + 0: The maximum resident set size (KB) = 1380720 -Test 042 control_p8_lndp PASS +Test 041 control_p8_lndp PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/control_restart_p8 -Checking test 043 control_restart_p8 results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/control_restart_p8 +Checking test 042 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1971,15 +1916,15 @@ Checking test 043 control_restart_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 95.495802 - 0: The maximum resident set size (KB) = 563096 + 0: The total amount of wall time = 108.514451 + 0: The maximum resident set size (KB) = 550192 -Test 043 control_restart_p8 PASS +Test 042 control_restart_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/control_decomp_p8 -Checking test 044 control_decomp_p8 results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/control_decomp_p8 +Checking test 043 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2021,15 +1966,15 @@ Checking test 044 control_decomp_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 184.830820 - 0: The maximum resident set size (KB) = 1373104 + 0: The total amount of wall time = 184.976943 + 0: The maximum resident set size (KB) = 1396760 -Test 044 control_decomp_p8 PASS +Test 043 control_decomp_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/control_2threads_p8 -Checking test 045 control_2threads_p8 results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/control_2threads_p8 +Checking test 044 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2071,15 +2016,15 @@ Checking test 045 control_2threads_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 235.042838 - 0: The maximum resident set size (KB) = 1485044 + 0: The total amount of wall time = 228.013950 + 0: The maximum resident set size (KB) = 1481924 -Test 045 control_2threads_p8 PASS +Test 044 control_2threads_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_p8_rrtmgp -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/control_p8_rrtmgp -Checking test 046 control_p8_rrtmgp results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/control_p8_rrtmgp +Checking test 045 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2125,15 +2070,15 @@ Checking test 046 control_p8_rrtmgp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 339.092949 - 0: The maximum resident set size (KB) = 1505000 + 0: The total amount of wall time = 227.888768 + 0: The maximum resident set size (KB) = 1519176 -Test 046 control_p8_rrtmgp PASS +Test 045 control_p8_rrtmgp PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/merra2_thompson -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/merra2_thompson -Checking test 047 merra2_thompson results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/merra2_thompson +Checking test 046 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2179,15 +2124,15 @@ Checking test 047 merra2_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 179.688743 - 0: The maximum resident set size (KB) = 1408592 + 0: The total amount of wall time = 179.570492 + 0: The maximum resident set size (KB) = 1408372 -Test 047 merra2_thompson PASS +Test 046 merra2_thompson PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/regional_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/regional_control -Checking test 048 regional_control results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/regional_control +Checking test 047 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2197,29 +2142,29 @@ Checking test 048 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 339.707500 - 0: The maximum resident set size (KB) = 575300 + 0: The total amount of wall time = 327.610320 + 0: The maximum resident set size (KB) = 575532 -Test 048 regional_control PASS +Test 047 regional_control PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/regional_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/regional_restart -Checking test 049 regional_restart results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/regional_restart +Checking test 048 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 171.068916 - 0: The maximum resident set size (KB) = 574856 + 0: The total amount of wall time = 167.500321 + 0: The maximum resident set size (KB) = 574896 -Test 049 regional_restart PASS +Test 048 regional_restart PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/regional_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/regional_decomp -Checking test 050 regional_decomp results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/regional_decomp +Checking test 049 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2229,15 +2174,15 @@ Checking test 050 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 349.386291 - 0: The maximum resident set size (KB) = 577848 + 0: The total amount of wall time = 347.392504 + 0: The maximum resident set size (KB) = 578116 -Test 050 regional_decomp PASS +Test 049 regional_decomp PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/regional_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/regional_2threads -Checking test 051 regional_2threads results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/regional_2threads +Checking test 050 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2247,44 +2192,44 @@ Checking test 051 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 341.234359 - 0: The maximum resident set size (KB) = 571656 + 0: The total amount of wall time = 275.663456 + 0: The maximum resident set size (KB) = 571648 -Test 051 regional_2threads PASS +Test 050 regional_2threads PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/regional_noquilt -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/regional_noquilt -Checking test 052 regional_noquilt results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/regional_noquilt +Checking test 051 regional_noquilt 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 = 356.372223 - 0: The maximum resident set size (KB) = 585444 + 0: The total amount of wall time = 355.487858 + 0: The maximum resident set size (KB) = 585416 -Test 052 regional_noquilt PASS +Test 051 regional_noquilt PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/regional_netcdf_parallel -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/regional_netcdf_parallel -Checking test 053 regional_netcdf_parallel results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/regional_netcdf_parallel +Checking test 052 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 361.552188 - 0: The maximum resident set size (KB) = 570012 + 0: The total amount of wall time = 346.773515 + 0: The maximum resident set size (KB) = 569944 -Test 053 regional_netcdf_parallel PASS +Test 052 regional_netcdf_parallel PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/regional_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/regional_2dwrtdecomp -Checking test 054 regional_2dwrtdecomp results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/regional_2dwrtdecomp +Checking test 053 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2294,15 +2239,15 @@ Checking test 054 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 334.100003 - 0: The maximum resident set size (KB) = 575356 + 0: The total amount of wall time = 329.311214 + 0: The maximum resident set size (KB) = 575412 -Test 054 regional_2dwrtdecomp PASS +Test 053 regional_2dwrtdecomp PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/fv3_regional_wofs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/regional_wofs -Checking test 055 regional_wofs results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/regional_wofs +Checking test 054 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2312,15 +2257,15 @@ Checking test 055 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 421.848117 - 0: The maximum resident set size (KB) = 258236 + 0: The total amount of wall time = 418.145404 + 0: The maximum resident set size (KB) = 258288 -Test 055 regional_wofs PASS +Test 054 regional_wofs PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/rap_control -Checking test 056 rap_control results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/rap_control +Checking test 055 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2366,15 +2311,15 @@ Checking test 056 rap_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 469.656613 - 0: The maximum resident set size (KB) = 806240 + 0: The total amount of wall time = 461.649863 + 0: The maximum resident set size (KB) = 806300 -Test 056 rap_control PASS +Test 055 rap_control PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_rrtmgp -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/rap_rrtmgp -Checking test 057 rap_rrtmgp results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/rap_rrtmgp +Checking test 056 rap_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2420,15 +2365,15 @@ Checking test 057 rap_rrtmgp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 518.517716 - 0: The maximum resident set size (KB) = 924096 + 0: The total amount of wall time = 508.892882 + 0: The maximum resident set size (KB) = 924108 -Test 057 rap_rrtmgp PASS +Test 056 rap_rrtmgp PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/regional_spp_sppt_shum_skeb -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/regional_spp_sppt_shum_skeb -Checking test 058 regional_spp_sppt_shum_skeb results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/regional_spp_sppt_shum_skeb +Checking test 057 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -2438,15 +2383,15 @@ Checking test 058 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 362.014558 - 0: The maximum resident set size (KB) = 889656 + 0: The total amount of wall time = 371.559332 + 0: The maximum resident set size (KB) = 889484 -Test 058 regional_spp_sppt_shum_skeb PASS +Test 057 regional_spp_sppt_shum_skeb PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/rap_decomp -Checking test 059 rap_decomp results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/rap_decomp +Checking test 058 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2492,15 +2437,15 @@ Checking test 059 rap_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 568.074069 - 0: The maximum resident set size (KB) = 806080 + 0: The total amount of wall time = 483.765521 + 0: The maximum resident set size (KB) = 806284 -Test 059 rap_decomp PASS +Test 058 rap_decomp PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/rap_2threads -Checking test 060 rap_2threads results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/rap_2threads +Checking test 059 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2546,15 +2491,15 @@ Checking test 060 rap_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 625.453856 - 0: The maximum resident set size (KB) = 871884 + 0: The total amount of wall time = 590.011824 + 0: The maximum resident set size (KB) = 864592 -Test 060 rap_2threads PASS +Test 059 rap_2threads PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/rap_restart -Checking test 061 rap_restart results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/rap_restart +Checking test 060 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2592,15 +2537,15 @@ Checking test 061 rap_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 231.516705 - 0: The maximum resident set size (KB) = 549748 + 0: The total amount of wall time = 232.040019 + 0: The maximum resident set size (KB) = 549520 -Test 061 rap_restart PASS +Test 060 rap_restart PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_sfcdiff -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/rap_sfcdiff -Checking test 062 rap_sfcdiff results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/rap_sfcdiff +Checking test 061 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2646,15 +2591,15 @@ Checking test 062 rap_sfcdiff results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 460.477667 - 0: The maximum resident set size (KB) = 806272 + 0: The total amount of wall time = 453.108789 + 0: The maximum resident set size (KB) = 806180 -Test 062 rap_sfcdiff PASS +Test 061 rap_sfcdiff PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_sfcdiff -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/rap_sfcdiff_decomp -Checking test 063 rap_sfcdiff_decomp results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/rap_sfcdiff_decomp +Checking test 062 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2700,15 +2645,15 @@ Checking test 063 rap_sfcdiff_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 508.746508 - 0: The maximum resident set size (KB) = 806276 + 0: The total amount of wall time = 481.424294 + 0: The maximum resident set size (KB) = 806164 -Test 063 rap_sfcdiff_decomp PASS +Test 062 rap_sfcdiff_decomp PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_sfcdiff -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/rap_sfcdiff_restart -Checking test 064 rap_sfcdiff_restart results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/rap_sfcdiff_restart +Checking test 063 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2746,15 +2691,15 @@ Checking test 064 rap_sfcdiff_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 338.204424 - 0: The maximum resident set size (KB) = 549736 + 0: The total amount of wall time = 339.618026 + 0: The maximum resident set size (KB) = 549544 -Test 064 rap_sfcdiff_restart PASS +Test 063 rap_sfcdiff_restart PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/hrrr_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/hrrr_control -Checking test 065 hrrr_control results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/hrrr_control +Checking test 064 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2800,15 +2745,15 @@ Checking test 065 hrrr_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 454.452815 - 0: The maximum resident set size (KB) = 804828 + 0: The total amount of wall time = 437.263110 + 0: The maximum resident set size (KB) = 804948 -Test 065 hrrr_control PASS +Test 064 hrrr_control PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/hrrr_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/hrrr_control_decomp -Checking test 066 hrrr_control_decomp results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/hrrr_control_decomp +Checking test 065 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2854,15 +2799,15 @@ Checking test 066 hrrr_control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 469.600824 - 0: The maximum resident set size (KB) = 805108 + 0: The total amount of wall time = 458.553662 + 0: The maximum resident set size (KB) = 805120 -Test 066 hrrr_control_decomp PASS +Test 065 hrrr_control_decomp PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/hrrr_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/hrrr_control_2threads -Checking test 067 hrrr_control_2threads results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/hrrr_control_2threads +Checking test 066 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2908,15 +2853,15 @@ Checking test 067 hrrr_control_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 560.503953 - 0: The maximum resident set size (KB) = 867056 + 0: The total amount of wall time = 554.751017 + 0: The maximum resident set size (KB) = 867524 -Test 067 hrrr_control_2threads PASS +Test 066 hrrr_control_2threads PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/hrrr_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/hrrr_control_restart -Checking test 068 hrrr_control_restart results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/hrrr_control_restart +Checking test 067 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2954,15 +2899,15 @@ Checking test 068 hrrr_control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 325.614762 - 0: The maximum resident set size (KB) = 546540 + 0: The total amount of wall time = 328.778938 + 0: The maximum resident set size (KB) = 546488 -Test 068 hrrr_control_restart PASS +Test 067 hrrr_control_restart PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rrfs_v1beta -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/rrfs_v1beta -Checking test 069 rrfs_v1beta results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/rrfs_v1beta +Checking test 068 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3008,15 +2953,15 @@ Checking test 069 rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 449.523080 + 0: The total amount of wall time = 450.383845 0: The maximum resident set size (KB) = 801900 -Test 069 rrfs_v1beta PASS +Test 068 rrfs_v1beta PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rrfs_v1nssl -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/rrfs_v1nssl -Checking test 070 rrfs_v1nssl results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/rrfs_v1nssl +Checking test 069 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3030,15 +2975,15 @@ Checking test 070 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 559.289433 - 0: The maximum resident set size (KB) = 492832 + 0: The total amount of wall time = 555.050347 + 0: The maximum resident set size (KB) = 492648 -Test 070 rrfs_v1nssl PASS +Test 069 rrfs_v1nssl PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/rrfs_v1nssl_nohailnoccn -Checking test 071 rrfs_v1nssl_nohailnoccn results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/rrfs_v1nssl_nohailnoccn +Checking test 070 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3052,15 +2997,15 @@ Checking test 071 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 543.786678 - 0: The maximum resident set size (KB) = 484072 + 0: The total amount of wall time = 557.925849 + 0: The maximum resident set size (KB) = 483860 -Test 071 rrfs_v1nssl_nohailnoccn PASS +Test 070 rrfs_v1nssl_nohailnoccn PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/rrfs_conus13km_hrrr_warm -Checking test 072 rrfs_conus13km_hrrr_warm results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/rrfs_conus13km_hrrr_warm +Checking test 071 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -3068,15 +3013,15 @@ Checking test 072 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 136.807801 - 0: The maximum resident set size (KB) = 617332 + 0: The total amount of wall time = 143.588227 + 0: The maximum resident set size (KB) = 616932 -Test 072 rrfs_conus13km_hrrr_warm PASS +Test 071 rrfs_conus13km_hrrr_warm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/rrfs_smoke_conus13km_hrrr_warm -Checking test 073 rrfs_smoke_conus13km_hrrr_warm results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/rrfs_smoke_conus13km_hrrr_warm +Checking test 072 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -3084,15 +3029,15 @@ Checking test 073 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 234.775236 - 0: The maximum resident set size (KB) = 628072 + 0: The total amount of wall time = 161.486816 + 0: The maximum resident set size (KB) = 627768 -Test 073 rrfs_smoke_conus13km_hrrr_warm PASS +Test 072 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/rrfs_conus13km_radar_tten_warm -Checking test 074 rrfs_conus13km_radar_tten_warm results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/rrfs_conus13km_radar_tten_warm +Checking test 073 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -3100,15 +3045,15 @@ Checking test 074 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 135.854915 - 0: The maximum resident set size (KB) = 621068 + 0: The total amount of wall time = 144.961733 + 0: The maximum resident set size (KB) = 620856 -Test 074 rrfs_conus13km_radar_tten_warm PASS +Test 073 rrfs_conus13km_radar_tten_warm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/rrfs_conus13km_hrrr_warm_2threads -Checking test 075 rrfs_conus13km_hrrr_warm_2threads results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/rrfs_conus13km_hrrr_warm_2threads +Checking test 074 rrfs_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -3116,15 +3061,15 @@ Checking test 075 rrfs_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 119.326120 - 0: The maximum resident set size (KB) = 622580 + 0: The total amount of wall time = 158.062148 + 0: The maximum resident set size (KB) = 621992 -Test 075 rrfs_conus13km_hrrr_warm_2threads PASS +Test 074 rrfs_conus13km_hrrr_warm_2threads PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/rrfs_conus13km_radar_tten_warm_2threads -Checking test 076 rrfs_conus13km_radar_tten_warm_2threads results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/rrfs_conus13km_radar_tten_warm_2threads +Checking test 075 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -3132,15 +3077,15 @@ Checking test 076 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 130.139639 - 0: The maximum resident set size (KB) = 624928 + 0: The total amount of wall time = 121.960280 + 0: The maximum resident set size (KB) = 625272 -Test 076 rrfs_conus13km_radar_tten_warm_2threads PASS +Test 075 rrfs_conus13km_radar_tten_warm_2threads PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_csawmgt -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/control_csawmgt -Checking test 077 control_csawmgt results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/control_csawmgt +Checking test 076 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3150,15 +3095,15 @@ Checking test 077 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 389.015821 - 0: The maximum resident set size (KB) = 505852 + 0: The total amount of wall time = 392.401050 + 0: The maximum resident set size (KB) = 505908 -Test 077 control_csawmgt PASS +Test 076 control_csawmgt PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_ras -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/control_ras -Checking test 078 control_ras results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/control_ras +Checking test 077 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3168,83 +3113,83 @@ Checking test 078 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 196.564776 + 0: The total amount of wall time = 197.620774 0: The maximum resident set size (KB) = 471576 -Test 078 control_ras PASS +Test 077 control_ras PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_wam -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/control_wam -Checking test 079 control_wam results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/control_wam +Checking test 078 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 135.054723 - 0: The maximum resident set size (KB) = 186116 + 0: The total amount of wall time = 127.673202 + 0: The maximum resident set size (KB) = 186140 -Test 079 control_wam PASS +Test 078 control_wam PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/rrfs_conus13km_hrrr_warm_debug -Checking test 080 rrfs_conus13km_hrrr_warm_debug results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/rrfs_conus13km_hrrr_warm_debug +Checking test 079 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 760.224633 - 0: The maximum resident set size (KB) = 647916 + 0: The total amount of wall time = 779.055129 + 0: The maximum resident set size (KB) = 648632 -Test 080 rrfs_conus13km_hrrr_warm_debug PASS +Test 079 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rrfs_conus13km_radar_tten_warm_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/rrfs_conus13km_radar_tten_warm_debug -Checking test 081 rrfs_conus13km_radar_tten_warm_debug results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/rrfs_conus13km_radar_tten_warm_debug +Checking test 080 rrfs_conus13km_radar_tten_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 761.029375 - 0: The maximum resident set size (KB) = 648284 + 0: The total amount of wall time = 776.382885 + 0: The maximum resident set size (KB) = 649516 -Test 081 rrfs_conus13km_radar_tten_warm_debug PASS +Test 080 rrfs_conus13km_radar_tten_warm_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/control_debug -Checking test 082 control_debug results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/control_debug +Checking test 081 control_debug 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.778784 - 0: The maximum resident set size (KB) = 602604 + 0: The total amount of wall time = 156.216479 + 0: The maximum resident set size (KB) = 602332 -Test 082 control_debug PASS +Test 081 control_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/control_2threads_debug -Checking test 083 control_2threads_debug results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/control_2threads_debug +Checking test 082 control_2threads_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 265.727919 - 0: The maximum resident set size (KB) = 655112 + 0: The total amount of wall time = 266.472054 + 0: The maximum resident set size (KB) = 655620 -Test 083 control_2threads_debug PASS +Test 082 control_2threads_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_CubedSphereGrid_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/control_CubedSphereGrid_debug -Checking test 084 control_CubedSphereGrid_debug results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/control_CubedSphereGrid_debug +Checking test 083 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -3270,349 +3215,349 @@ Checking test 084 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 166.354343 - 0: The maximum resident set size (KB) = 602208 + 0: The total amount of wall time = 165.577525 + 0: The maximum resident set size (KB) = 602524 -Test 084 control_CubedSphereGrid_debug PASS +Test 083 control_CubedSphereGrid_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/control_wrtGauss_netcdf_parallel_debug -Checking test 085 control_wrtGauss_netcdf_parallel_debug results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/control_wrtGauss_netcdf_parallel_debug +Checking test 084 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 163.701358 - 0: The maximum resident set size (KB) = 602204 + 0: The total amount of wall time = 159.315946 + 0: The maximum resident set size (KB) = 602364 -Test 085 control_wrtGauss_netcdf_parallel_debug PASS +Test 084 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_stochy_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/control_stochy_debug -Checking test 086 control_stochy_debug results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/control_stochy_debug +Checking test 085 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 174.543181 - 0: The maximum resident set size (KB) = 608320 + 0: The total amount of wall time = 179.160655 + 0: The maximum resident set size (KB) = 608520 -Test 086 control_stochy_debug PASS +Test 085 control_stochy_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_lndp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/control_lndp_debug -Checking test 087 control_lndp_debug results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/control_lndp_debug +Checking test 086 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 156.370952 - 0: The maximum resident set size (KB) = 609512 + 0: The total amount of wall time = 160.413754 + 0: The maximum resident set size (KB) = 609744 -Test 087 control_lndp_debug PASS +Test 086 control_lndp_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_csawmg_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/control_csawmg_debug -Checking test 088 control_csawmg_debug results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/control_csawmg_debug +Checking test 087 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 250.289099 - 0: The maximum resident set size (KB) = 644412 + 0: The total amount of wall time = 259.840050 + 0: The maximum resident set size (KB) = 644516 -Test 088 control_csawmg_debug PASS +Test 087 control_csawmg_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_csawmgt_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/control_csawmgt_debug -Checking test 089 control_csawmgt_debug results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/control_csawmgt_debug +Checking test 088 control_csawmgt_debug 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.525572 - 0: The maximum resident set size (KB) = 643772 + 0: The total amount of wall time = 247.192505 + 0: The maximum resident set size (KB) = 643660 -Test 089 control_csawmgt_debug PASS +Test 088 control_csawmgt_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_ras_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/control_ras_debug -Checking test 090 control_ras_debug results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/control_ras_debug +Checking test 089 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 157.999235 - 0: The maximum resident set size (KB) = 616184 + 0: The total amount of wall time = 162.605996 + 0: The maximum resident set size (KB) = 616448 -Test 090 control_ras_debug PASS +Test 089 control_ras_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_diag_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/control_diag_debug -Checking test 091 control_diag_debug results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/control_diag_debug +Checking test 090 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 160.911130 - 0: The maximum resident set size (KB) = 659896 + 0: The total amount of wall time = 165.859684 + 0: The maximum resident set size (KB) = 659692 -Test 091 control_diag_debug PASS +Test 090 control_diag_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_debug_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/control_debug_p8 -Checking test 092 control_debug_p8 results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/control_debug_p8 +Checking test 091 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 176.659121 - 0: The maximum resident set size (KB) = 1423776 + 0: The total amount of wall time = 182.618488 + 0: The maximum resident set size (KB) = 1380796 -Test 092 control_debug_p8 PASS +Test 091 control_debug_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/regional_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/regional_debug -Checking test 093 regional_debug results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/regional_debug +Checking test 092 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 1040.345988 - 0: The maximum resident set size (KB) = 600824 + 0: The total amount of wall time = 1055.066576 + 0: The maximum resident set size (KB) = 601160 -Test 093 regional_debug PASS +Test 092 regional_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_control_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/rap_control_debug -Checking test 094 rap_control_debug results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/rap_control_debug +Checking test 093 rap_control_debug 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.068742 + 0: The total amount of wall time = 289.439300 0: The maximum resident set size (KB) = 971420 -Test 094 rap_control_debug PASS +Test 093 rap_control_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/hrrr_control_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/hrrr_control_debug -Checking test 095 hrrr_control_debug results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/hrrr_control_debug +Checking test 094 hrrr_control_debug 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.421017 - 0: The maximum resident set size (KB) = 967272 + 0: The total amount of wall time = 283.589915 + 0: The maximum resident set size (KB) = 968248 -Test 095 hrrr_control_debug PASS +Test 094 hrrr_control_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_control_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/rap_unified_drag_suite_debug -Checking test 096 rap_unified_drag_suite_debug results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/rap_unified_drag_suite_debug +Checking test 095 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 284.490644 - 0: The maximum resident set size (KB) = 970668 + 0: The total amount of wall time = 288.771154 + 0: The maximum resident set size (KB) = 970904 -Test 096 rap_unified_drag_suite_debug PASS +Test 095 rap_unified_drag_suite_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_diag_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/rap_diag_debug -Checking test 097 rap_diag_debug results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/rap_diag_debug +Checking test 096 rap_diag_debug 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.148089 - 0: The maximum resident set size (KB) = 1055008 + 0: The total amount of wall time = 300.159252 + 0: The maximum resident set size (KB) = 1054444 -Test 097 rap_diag_debug PASS +Test 096 rap_diag_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_cires_ugwp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/rap_cires_ugwp_debug -Checking test 098 rap_cires_ugwp_debug results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/rap_cires_ugwp_debug +Checking test 097 rap_cires_ugwp_debug 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.599022 - 0: The maximum resident set size (KB) = 969792 + 0: The total amount of wall time = 292.420320 + 0: The maximum resident set size (KB) = 969800 -Test 098 rap_cires_ugwp_debug PASS +Test 097 rap_cires_ugwp_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_cires_ugwp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/rap_unified_ugwp_debug -Checking test 099 rap_unified_ugwp_debug results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/rap_unified_ugwp_debug +Checking test 098 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 289.070019 - 0: The maximum resident set size (KB) = 970620 + 0: The total amount of wall time = 299.069169 + 0: The maximum resident set size (KB) = 971028 -Test 099 rap_unified_ugwp_debug PASS +Test 098 rap_unified_ugwp_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_lndp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/rap_lndp_debug -Checking test 100 rap_lndp_debug results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/rap_lndp_debug +Checking test 099 rap_lndp_debug 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.791727 - 0: The maximum resident set size (KB) = 972192 + 0: The total amount of wall time = 292.830614 + 0: The maximum resident set size (KB) = 972188 -Test 100 rap_lndp_debug PASS +Test 099 rap_lndp_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_flake_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/rap_flake_debug -Checking test 101 rap_flake_debug results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/rap_flake_debug +Checking test 100 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 284.408599 - 0: The maximum resident set size (KB) = 971096 + 0: The total amount of wall time = 295.863636 + 0: The maximum resident set size (KB) = 970368 -Test 101 rap_flake_debug PASS +Test 100 rap_flake_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_progcld_thompson_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/rap_progcld_thompson_debug -Checking test 102 rap_progcld_thompson_debug results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/rap_progcld_thompson_debug +Checking test 101 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 284.561638 - 0: The maximum resident set size (KB) = 971160 + 0: The total amount of wall time = 286.037973 + 0: The maximum resident set size (KB) = 971140 -Test 102 rap_progcld_thompson_debug PASS +Test 101 rap_progcld_thompson_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_noah_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/rap_noah_debug -Checking test 103 rap_noah_debug results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/rap_noah_debug +Checking test 102 rap_noah_debug 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.441388 - 0: The maximum resident set size (KB) = 970596 + 0: The total amount of wall time = 282.305071 + 0: The maximum resident set size (KB) = 970320 -Test 103 rap_noah_debug PASS +Test 102 rap_noah_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_rrtmgp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/rap_rrtmgp_debug -Checking test 104 rap_rrtmgp_debug results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/rap_rrtmgp_debug +Checking test 103 rap_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 479.875815 - 0: The maximum resident set size (KB) = 1093008 + 0: The total amount of wall time = 484.834295 + 0: The maximum resident set size (KB) = 1092636 -Test 104 rap_rrtmgp_debug PASS +Test 103 rap_rrtmgp_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_sfcdiff_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/rap_sfcdiff_debug -Checking test 105 rap_sfcdiff_debug results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/rap_sfcdiff_debug +Checking test 104 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 284.466256 - 0: The maximum resident set size (KB) = 971604 + 0: The total amount of wall time = 286.978613 + 0: The maximum resident set size (KB) = 971096 -Test 105 rap_sfcdiff_debug PASS +Test 104 rap_sfcdiff_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/rap_noah_sfcdiff_cires_ugwp_debug -Checking test 106 rap_noah_sfcdiff_cires_ugwp_debug results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/rap_noah_sfcdiff_cires_ugwp_debug +Checking test 105 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 469.905580 - 0: The maximum resident set size (KB) = 969664 + 0: The total amount of wall time = 474.614252 + 0: The maximum resident set size (KB) = 969288 -Test 106 rap_noah_sfcdiff_cires_ugwp_debug PASS +Test 105 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rrfs_v1beta_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/rrfs_v1beta_debug -Checking test 107 rrfs_v1beta_debug results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/rrfs_v1beta_debug +Checking test 106 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 280.285582 - 0: The maximum resident set size (KB) = 966848 + 0: The total amount of wall time = 283.085142 + 0: The maximum resident set size (KB) = 967000 -Test 107 rrfs_v1beta_debug PASS +Test 106 rrfs_v1beta_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_wam_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/control_wam_debug -Checking test 108 control_wam_debug results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/control_wam_debug +Checking test 107 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 290.914092 - 0: The maximum resident set size (KB) = 218372 + 0: The total amount of wall time = 291.541233 + 0: The maximum resident set size (KB) = 218916 -Test 108 control_wam_debug PASS +Test 107 control_wam_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/regional_spp_sppt_shum_skeb_dyn32_phy32 -Checking test 109 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/regional_spp_sppt_shum_skeb_dyn32_phy32 +Checking test 108 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -3622,15 +3567,15 @@ Checking test 109 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 332.515504 - 0: The maximum resident set size (KB) = 790432 + 0: The total amount of wall time = 342.051427 + 0: The maximum resident set size (KB) = 790932 -Test 109 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS +Test 108 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_control_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/rap_control_dyn32_phy32 -Checking test 110 rap_control_dyn32_phy32 results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/rap_control_dyn32_phy32 +Checking test 109 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3676,15 +3621,15 @@ Checking test 110 rap_control_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 371.453693 - 0: The maximum resident set size (KB) = 689612 + 0: The total amount of wall time = 368.996123 + 0: The maximum resident set size (KB) = 689680 -Test 110 rap_control_dyn32_phy32 PASS +Test 109 rap_control_dyn32_phy32 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/hrrr_control_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/hrrr_control_dyn32_phy32 -Checking test 111 hrrr_control_dyn32_phy32 results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/hrrr_control_dyn32_phy32 +Checking test 110 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3730,15 +3675,15 @@ Checking test 111 hrrr_control_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 194.779863 - 0: The maximum resident set size (KB) = 687540 + 0: The total amount of wall time = 194.629480 + 0: The maximum resident set size (KB) = 687692 -Test 111 hrrr_control_dyn32_phy32 PASS +Test 110 hrrr_control_dyn32_phy32 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_control_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/rap_2threads_dyn32_phy32 -Checking test 112 rap_2threads_dyn32_phy32 results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/rap_2threads_dyn32_phy32 +Checking test 111 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3784,15 +3729,15 @@ Checking test 112 rap_2threads_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 482.815282 - 0: The maximum resident set size (KB) = 740780 + 0: The total amount of wall time = 486.905367 + 0: The maximum resident set size (KB) = 740724 -Test 112 rap_2threads_dyn32_phy32 PASS +Test 111 rap_2threads_dyn32_phy32 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/hrrr_control_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/hrrr_control_2threads_dyn32_phy32 -Checking test 113 hrrr_control_2threads_dyn32_phy32 results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/hrrr_control_2threads_dyn32_phy32 +Checking test 112 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3838,15 +3783,15 @@ Checking test 113 hrrr_control_2threads_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 252.087297 - 0: The maximum resident set size (KB) = 732564 + 0: The total amount of wall time = 251.443522 + 0: The maximum resident set size (KB) = 732596 -Test 113 hrrr_control_2threads_dyn32_phy32 PASS +Test 112 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/hrrr_control_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/hrrr_control_decomp_dyn32_phy32 -Checking test 114 hrrr_control_decomp_dyn32_phy32 results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/hrrr_control_decomp_dyn32_phy32 +Checking test 113 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3892,15 +3837,15 @@ Checking test 114 hrrr_control_decomp_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 204.723366 - 0: The maximum resident set size (KB) = 687384 + 0: The total amount of wall time = 210.117911 + 0: The maximum resident set size (KB) = 687360 -Test 114 hrrr_control_decomp_dyn32_phy32 PASS +Test 113 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_control_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/rap_restart_dyn32_phy32 -Checking test 115 rap_restart_dyn32_phy32 results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/rap_restart_dyn32_phy32 +Checking test 114 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3938,15 +3883,15 @@ Checking test 115 rap_restart_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 281.099087 - 0: The maximum resident set size (KB) = 522028 + 0: The total amount of wall time = 280.771592 + 0: The maximum resident set size (KB) = 521952 -Test 115 rap_restart_dyn32_phy32 PASS +Test 114 rap_restart_dyn32_phy32 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/hrrr_control_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/hrrr_control_restart_dyn32_phy32 -Checking test 116 hrrr_control_restart_dyn32_phy32 results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/hrrr_control_restart_dyn32_phy32 +Checking test 115 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3984,15 +3929,15 @@ Checking test 116 hrrr_control_restart_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 103.180121 - 0: The maximum resident set size (KB) = 518892 + 0: The total amount of wall time = 104.580629 + 0: The maximum resident set size (KB) = 518912 -Test 116 hrrr_control_restart_dyn32_phy32 PASS +Test 115 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_control_dyn64_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/rap_control_dyn64_phy32 -Checking test 117 rap_control_dyn64_phy32 results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/rap_control_dyn64_phy32 +Checking test 116 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4038,82 +3983,82 @@ Checking test 117 rap_control_dyn64_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 252.075234 - 0: The maximum resident set size (KB) = 707420 + 0: The total amount of wall time = 253.830785 + 0: The maximum resident set size (KB) = 707556 -Test 117 rap_control_dyn64_phy32 PASS +Test 116 rap_control_dyn64_phy32 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/rap_control_debug_dyn32_phy32 -Checking test 118 rap_control_debug_dyn32_phy32 results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/rap_control_debug_dyn32_phy32 +Checking test 117 rap_control_debug_dyn32_phy32 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.738367 - 0: The maximum resident set size (KB) = 855128 + 0: The total amount of wall time = 286.271541 + 0: The maximum resident set size (KB) = 855440 -Test 118 rap_control_debug_dyn32_phy32 PASS +Test 117 rap_control_debug_dyn32_phy32 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/hrrr_control_debug_dyn32_phy32 -Checking test 119 hrrr_control_debug_dyn32_phy32 results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/hrrr_control_debug_dyn32_phy32 +Checking test 118 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 280.278454 - 0: The maximum resident set size (KB) = 853496 + 0: The total amount of wall time = 281.497199 + 0: The maximum resident set size (KB) = 853680 -Test 119 hrrr_control_debug_dyn32_phy32 PASS +Test 118 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/rap_control_dyn64_phy32_debug -Checking test 120 rap_control_dyn64_phy32_debug results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/rap_control_dyn64_phy32_debug +Checking test 119 rap_control_dyn64_phy32_debug 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.396353 - 0: The maximum resident set size (KB) = 871868 + 0: The total amount of wall time = 290.370648 + 0: The maximum resident set size (KB) = 871916 -Test 120 rap_control_dyn64_phy32_debug PASS +Test 119 rap_control_dyn64_phy32_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/hafs_regional_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/hafs_regional_atm -Checking test 121 hafs_regional_atm results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/hafs_regional_atm +Checking test 120 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 359.033553 - 0: The maximum resident set size (KB) = 669228 + 0: The total amount of wall time = 360.226829 + 0: The maximum resident set size (KB) = 665492 -Test 121 hafs_regional_atm PASS +Test 120 hafs_regional_atm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/hafs_regional_atm_thompson_gfdlsf -Checking test 122 hafs_regional_atm_thompson_gfdlsf results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/hafs_regional_atm_thompson_gfdlsf +Checking test 121 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 402.205023 - 0: The maximum resident set size (KB) = 1018908 + 0: The total amount of wall time = 403.520194 + 0: The maximum resident set size (KB) = 1019152 -Test 122 hafs_regional_atm_thompson_gfdlsf PASS +Test 121 hafs_regional_atm_thompson_gfdlsf PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/hafs_regional_atm_ocn -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/hafs_regional_atm_ocn -Checking test 123 hafs_regional_atm_ocn results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/hafs_regional_atm_ocn +Checking test 122 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -4121,15 +4066,15 @@ Checking test 123 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 434.663765 - 0: The maximum resident set size (KB) = 692172 + 0: The total amount of wall time = 434.761060 + 0: The maximum resident set size (KB) = 691712 -Test 123 hafs_regional_atm_ocn PASS +Test 122 hafs_regional_atm_ocn PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/hafs_regional_atm_wav -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/hafs_regional_atm_wav -Checking test 124 hafs_regional_atm_wav results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/hafs_regional_atm_wav +Checking test 123 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing out_grd.ww3 .........OK @@ -4137,15 +4082,15 @@ Checking test 124 hafs_regional_atm_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 896.257464 - 0: The maximum resident set size (KB) = 728264 + 0: The total amount of wall time = 897.484070 + 0: The maximum resident set size (KB) = 728116 -Test 124 hafs_regional_atm_wav PASS +Test 123 hafs_regional_atm_wav PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/hafs_regional_atm_ocn_wav -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/hafs_regional_atm_ocn_wav -Checking test 125 hafs_regional_atm_ocn_wav results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/hafs_regional_atm_ocn_wav +Checking test 124 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -4155,29 +4100,29 @@ Checking test 125 hafs_regional_atm_ocn_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 999.019748 - 0: The maximum resident set size (KB) = 736948 + 0: The total amount of wall time = 1000.919612 + 0: The maximum resident set size (KB) = 736792 -Test 125 hafs_regional_atm_ocn_wav PASS +Test 124 hafs_regional_atm_ocn_wav PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/hafs_regional_1nest_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/hafs_regional_1nest_atm -Checking test 126 hafs_regional_1nest_atm results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/hafs_regional_1nest_atm +Checking test 125 hafs_regional_1nest_atm 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 = 570.855091 - 0: The maximum resident set size (KB) = 263232 + 0: The total amount of wall time = 568.320642 + 0: The maximum resident set size (KB) = 263828 -Test 126 hafs_regional_1nest_atm PASS +Test 125 hafs_regional_1nest_atm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/hafs_regional_telescopic_2nests_atm -Checking test 127 hafs_regional_telescopic_2nests_atm results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/hafs_regional_telescopic_2nests_atm +Checking test 126 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4185,29 +4130,29 @@ Checking test 127 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 619.220689 - 0: The maximum resident set size (KB) = 265192 + 0: The total amount of wall time = 622.889506 + 0: The maximum resident set size (KB) = 265488 -Test 127 hafs_regional_telescopic_2nests_atm PASS +Test 126 hafs_regional_telescopic_2nests_atm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/hafs_global_1nest_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/hafs_global_1nest_atm -Checking test 128 hafs_global_1nest_atm results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/hafs_global_1nest_atm +Checking test 127 hafs_global_1nest_atm 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 = 258.237922 - 0: The maximum resident set size (KB) = 165608 + 0: The total amount of wall time = 255.121601 + 0: The maximum resident set size (KB) = 165636 -Test 128 hafs_global_1nest_atm PASS +Test 127 hafs_global_1nest_atm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/hafs_global_multiple_4nests_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/hafs_global_multiple_4nests_atm -Checking test 129 hafs_global_multiple_4nests_atm results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/hafs_global_multiple_4nests_atm +Checking test 128 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4224,15 +4169,15 @@ Checking test 129 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK - 0: The total amount of wall time = 734.199616 - 0: The maximum resident set size (KB) = 234940 + 0: The total amount of wall time = 732.704799 + 0: The maximum resident set size (KB) = 235028 -Test 129 hafs_global_multiple_4nests_atm PASS +Test 128 hafs_global_multiple_4nests_atm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/hafs_regional_specified_moving_1nest_atm -Checking test 130 hafs_regional_specified_moving_1nest_atm results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/hafs_regional_specified_moving_1nest_atm +Checking test 129 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4240,29 +4185,29 @@ Checking test 130 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 333.968537 - 0: The maximum resident set size (KB) = 272672 + 0: The total amount of wall time = 334.370418 + 0: The maximum resident set size (KB) = 272700 -Test 130 hafs_regional_specified_moving_1nest_atm PASS +Test 129 hafs_regional_specified_moving_1nest_atm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/hafs_regional_storm_following_1nest_atm -Checking test 131 hafs_regional_storm_following_1nest_atm results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/hafs_regional_storm_following_1nest_atm +Checking test 130 hafs_regional_storm_following_1nest_atm 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 = 321.538277 - 0: The maximum resident set size (KB) = 272456 + 0: The total amount of wall time = 321.166418 + 0: The maximum resident set size (KB) = 272760 -Test 131 hafs_regional_storm_following_1nest_atm PASS +Test 130 hafs_regional_storm_following_1nest_atm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/hafs_regional_storm_following_1nest_atm_ocn -Checking test 132 hafs_regional_storm_following_1nest_atm_ocn results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/hafs_regional_storm_following_1nest_atm_ocn +Checking test 131 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4270,15 +4215,15 @@ Checking test 132 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 339.740013 - 0: The maximum resident set size (KB) = 297440 + 0: The total amount of wall time = 334.765923 + 0: The maximum resident set size (KB) = 297940 -Test 132 hafs_regional_storm_following_1nest_atm_ocn PASS +Test 131 hafs_regional_storm_following_1nest_atm_ocn PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/hafs_regional_storm_following_1nest_atm_ocn_wav -Checking test 133 hafs_regional_storm_following_1nest_atm_ocn_wav results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/hafs_regional_storm_following_1nest_atm_ocn_wav +Checking test 132 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4288,176 +4233,176 @@ Checking test 133 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 864.416110 - 0: The maximum resident set size (KB) = 360088 + 0: The total amount of wall time = 874.808464 + 0: The maximum resident set size (KB) = 360760 -Test 133 hafs_regional_storm_following_1nest_atm_ocn_wav PASS +Test 132 hafs_regional_storm_following_1nest_atm_ocn_wav PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/hafs_global_storm_following_1nest_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/hafs_global_storm_following_1nest_atm -Checking test 134 hafs_global_storm_following_1nest_atm results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/hafs_global_storm_following_1nest_atm +Checking test 133 hafs_global_storm_following_1nest_atm 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 = 93.759109 - 0: The maximum resident set size (KB) = 183492 + 0: The total amount of wall time = 94.394965 + 0: The maximum resident set size (KB) = 183608 -Test 134 hafs_global_storm_following_1nest_atm PASS +Test 133 hafs_global_storm_following_1nest_atm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/hafs_regional_docn -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/hafs_regional_docn -Checking test 135 hafs_regional_docn results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/hafs_regional_docn +Checking test 134 hafs_regional_docn 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 = 418.540617 - 0: The maximum resident set size (KB) = 699496 + 0: The total amount of wall time = 420.076082 + 0: The maximum resident set size (KB) = 700108 -Test 135 hafs_regional_docn PASS +Test 134 hafs_regional_docn PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/hafs_regional_docn_oisst -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/hafs_regional_docn_oisst -Checking test 136 hafs_regional_docn_oisst results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/hafs_regional_docn_oisst +Checking test 135 hafs_regional_docn_oisst 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 = 420.113933 - 0: The maximum resident set size (KB) = 686352 + 0: The total amount of wall time = 421.948713 + 0: The maximum resident set size (KB) = 686120 -Test 136 hafs_regional_docn_oisst PASS +Test 135 hafs_regional_docn_oisst PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/hafs_regional_datm_cdeps -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/hafs_regional_datm_cdeps -Checking test 137 hafs_regional_datm_cdeps results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/hafs_regional_datm_cdeps +Checking test 136 hafs_regional_datm_cdeps 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 = 1179.115519 - 0: The maximum resident set size (KB) = 809020 + 0: The total amount of wall time = 1177.083899 + 0: The maximum resident set size (KB) = 809132 -Test 137 hafs_regional_datm_cdeps PASS +Test 136 hafs_regional_datm_cdeps PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/datm_cdeps_control_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/datm_cdeps_control_cfsr -Checking test 138 datm_cdeps_control_cfsr results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/datm_cdeps_control_cfsr +Checking test 137 datm_cdeps_control_cfsr results .... Comparing RESTART/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 = 158.338830 - 0: The maximum resident set size (KB) = 721260 + 0: The total amount of wall time = 160.499999 + 0: The maximum resident set size (KB) = 721128 -Test 138 datm_cdeps_control_cfsr PASS +Test 137 datm_cdeps_control_cfsr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/datm_cdeps_control_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/datm_cdeps_restart_cfsr -Checking test 139 datm_cdeps_restart_cfsr results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/datm_cdeps_restart_cfsr +Checking test 138 datm_cdeps_restart_cfsr results .... Comparing RESTART/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 = 95.092135 - 0: The maximum resident set size (KB) = 709024 + 0: The total amount of wall time = 96.623957 + 0: The maximum resident set size (KB) = 699872 -Test 139 datm_cdeps_restart_cfsr PASS +Test 138 datm_cdeps_restart_cfsr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/datm_cdeps_control_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/datm_cdeps_control_gefs -Checking test 140 datm_cdeps_control_gefs results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/datm_cdeps_control_gefs +Checking test 139 datm_cdeps_control_gefs results .... Comparing RESTART/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 = 152.723404 - 0: The maximum resident set size (KB) = 603460 + 0: The total amount of wall time = 154.489046 + 0: The maximum resident set size (KB) = 601352 -Test 140 datm_cdeps_control_gefs PASS +Test 139 datm_cdeps_control_gefs PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/datm_cdeps_iau_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/datm_cdeps_iau_gefs -Checking test 141 datm_cdeps_iau_gefs results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/datm_cdeps_iau_gefs +Checking test 140 datm_cdeps_iau_gefs results .... Comparing RESTART/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 = 159.741799 - 0: The maximum resident set size (KB) = 601476 + 0: The total amount of wall time = 157.314144 + 0: The maximum resident set size (KB) = 601204 -Test 141 datm_cdeps_iau_gefs PASS +Test 140 datm_cdeps_iau_gefs PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/datm_cdeps_stochy_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/datm_cdeps_stochy_gefs -Checking test 142 datm_cdeps_stochy_gefs results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/datm_cdeps_stochy_gefs +Checking test 141 datm_cdeps_stochy_gefs results .... Comparing RESTART/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 = 158.740053 - 0: The maximum resident set size (KB) = 605304 + 0: The total amount of wall time = 154.434536 + 0: The maximum resident set size (KB) = 601364 -Test 142 datm_cdeps_stochy_gefs PASS +Test 141 datm_cdeps_stochy_gefs PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/datm_cdeps_ciceC_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/datm_cdeps_ciceC_cfsr -Checking test 143 datm_cdeps_ciceC_cfsr results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/datm_cdeps_ciceC_cfsr +Checking test 142 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/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 = 159.520784 - 0: The maximum resident set size (KB) = 721156 + 0: The total amount of wall time = 158.617455 + 0: The maximum resident set size (KB) = 721196 -Test 143 datm_cdeps_ciceC_cfsr PASS +Test 142 datm_cdeps_ciceC_cfsr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/datm_cdeps_bulk_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/datm_cdeps_bulk_cfsr -Checking test 144 datm_cdeps_bulk_cfsr results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/datm_cdeps_bulk_cfsr +Checking test 143 datm_cdeps_bulk_cfsr results .... Comparing RESTART/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 = 161.558220 - 0: The maximum resident set size (KB) = 721140 + 0: The total amount of wall time = 178.349198 + 0: The maximum resident set size (KB) = 721104 -Test 144 datm_cdeps_bulk_cfsr PASS +Test 143 datm_cdeps_bulk_cfsr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/datm_cdeps_bulk_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/datm_cdeps_bulk_gefs -Checking test 145 datm_cdeps_bulk_gefs results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/datm_cdeps_bulk_gefs +Checking test 144 datm_cdeps_bulk_gefs results .... Comparing RESTART/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 = 154.723758 - 0: The maximum resident set size (KB) = 606344 + 0: The total amount of wall time = 173.069302 + 0: The maximum resident set size (KB) = 601160 -Test 145 datm_cdeps_bulk_gefs PASS +Test 144 datm_cdeps_bulk_gefs PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/datm_cdeps_mx025_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/datm_cdeps_mx025_cfsr -Checking test 146 datm_cdeps_mx025_cfsr results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/datm_cdeps_mx025_cfsr +Checking test 145 datm_cdeps_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK @@ -4465,15 +4410,15 @@ Checking test 146 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 448.717343 - 0: The maximum resident set size (KB) = 495460 + 0: The total amount of wall time = 450.929503 + 0: The maximum resident set size (KB) = 494696 -Test 146 datm_cdeps_mx025_cfsr PASS +Test 145 datm_cdeps_mx025_cfsr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/datm_cdeps_mx025_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/datm_cdeps_mx025_gefs -Checking test 147 datm_cdeps_mx025_gefs results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/datm_cdeps_mx025_gefs +Checking test 146 datm_cdeps_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK @@ -4481,65 +4426,65 @@ Checking test 147 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 445.687722 - 0: The maximum resident set size (KB) = 476028 + 0: The total amount of wall time = 427.968988 + 0: The maximum resident set size (KB) = 476164 -Test 147 datm_cdeps_mx025_gefs PASS +Test 146 datm_cdeps_mx025_gefs PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/datm_cdeps_control_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/datm_cdeps_multiple_files_cfsr -Checking test 148 datm_cdeps_multiple_files_cfsr results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/datm_cdeps_multiple_files_cfsr +Checking test 147 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 159.885825 - 0: The maximum resident set size (KB) = 721392 + 0: The total amount of wall time = 160.137065 + 0: The maximum resident set size (KB) = 721148 -Test 148 datm_cdeps_multiple_files_cfsr PASS +Test 147 datm_cdeps_multiple_files_cfsr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/datm_cdeps_3072x1536_cfsr -Checking test 149 datm_cdeps_3072x1536_cfsr results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/datm_cdeps_3072x1536_cfsr +Checking test 148 datm_cdeps_3072x1536_cfsr results .... Comparing RESTART/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 = 214.891679 - 0: The maximum resident set size (KB) = 1963468 + 0: The total amount of wall time = 214.211154 + 0: The maximum resident set size (KB) = 1963256 -Test 149 datm_cdeps_3072x1536_cfsr PASS +Test 148 datm_cdeps_3072x1536_cfsr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/datm_cdeps_gfs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/datm_cdeps_gfs -Checking test 150 datm_cdeps_gfs results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/datm_cdeps_gfs +Checking test 149 datm_cdeps_gfs results .... Comparing RESTART/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.759621 - 0: The maximum resident set size (KB) = 1963300 + 0: The total amount of wall time = 215.671931 + 0: The maximum resident set size (KB) = 1967660 -Test 150 datm_cdeps_gfs PASS +Test 149 datm_cdeps_gfs PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/datm_cdeps_debug_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/datm_cdeps_debug_cfsr -Checking test 151 datm_cdeps_debug_cfsr results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/datm_cdeps_debug_cfsr +Checking test 150 datm_cdeps_debug_cfsr results .... Comparing RESTART/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 = 371.874830 - 0: The maximum resident set size (KB) = 714956 + 0: The total amount of wall time = 377.526666 + 0: The maximum resident set size (KB) = 714800 -Test 151 datm_cdeps_debug_cfsr PASS +Test 150 datm_cdeps_debug_cfsr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/datm_cdeps_lnd_gswp3 -Checking test 152 datm_cdeps_lnd_gswp3 results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/datm_cdeps_lnd_gswp3 +Checking test 151 datm_cdeps_lnd_gswp3 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 @@ -4547,15 +4492,15 @@ Checking test 152 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 12.181537 - 0: The maximum resident set size (KB) = 153976 + 0: The total amount of wall time = 10.220270 + 0: The maximum resident set size (KB) = 154080 -Test 152 datm_cdeps_lnd_gswp3 PASS +Test 151 datm_cdeps_lnd_gswp3 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/datm_cdeps_lnd_gswp3_rst -Checking test 153 datm_cdeps_lnd_gswp3_rst results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/datm_cdeps_lnd_gswp3_rst +Checking test 152 datm_cdeps_lnd_gswp3_rst 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 @@ -4563,15 +4508,15 @@ Checking test 153 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 17.144631 - 0: The maximum resident set size (KB) = 145872 + 0: The total amount of wall time = 19.150437 + 0: The maximum resident set size (KB) = 150120 -Test 153 datm_cdeps_lnd_gswp3_rst PASS +Test 152 datm_cdeps_lnd_gswp3_rst PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_p8_atmlnd_sbs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/control_p8_atmlnd_sbs -Checking test 154 control_p8_atmlnd_sbs results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/control_p8_atmlnd_sbs +Checking test 153 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -4655,15 +4600,15 @@ Checking test 154 control_p8_atmlnd_sbs results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 241.017057 - 0: The maximum resident set size (KB) = 1437884 + 0: The total amount of wall time = 241.739920 + 0: The maximum resident set size (KB) = 1424536 -Test 154 control_p8_atmlnd_sbs PASS +Test 153 control_p8_atmlnd_sbs PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_atmwav -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/control_atmwav -Checking test 155 control_atmwav results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/control_atmwav +Checking test 154 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -4706,15 +4651,15 @@ Checking test 155 control_atmwav results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 96.710892 - 0: The maximum resident set size (KB) = 448548 + 0: The total amount of wall time = 95.881730 + 0: The maximum resident set size (KB) = 448644 -Test 155 control_atmwav PASS +Test 154 control_atmwav PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/atmaero_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/atmaero_control_p8 -Checking test 156 atmaero_control_p8 results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/atmaero_control_p8 +Checking test 155 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4757,15 +4702,15 @@ Checking test 156 atmaero_control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 256.591331 - 0: The maximum resident set size (KB) = 1460544 + 0: The total amount of wall time = 257.828631 + 0: The maximum resident set size (KB) = 1460692 -Test 156 atmaero_control_p8 PASS +Test 155 atmaero_control_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/atmaero_control_p8_rad -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/atmaero_control_p8_rad -Checking test 157 atmaero_control_p8_rad results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/atmaero_control_p8_rad +Checking test 156 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4808,15 +4753,15 @@ Checking test 157 atmaero_control_p8_rad results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 300.106194 - 0: The maximum resident set size (KB) = 1498344 + 0: The total amount of wall time = 310.425821 + 0: The maximum resident set size (KB) = 1481652 -Test 157 atmaero_control_p8_rad PASS +Test 156 atmaero_control_p8_rad PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/atmaero_control_p8_rad_micro -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/atmaero_control_p8_rad_micro -Checking test 158 atmaero_control_p8_rad_micro results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/atmaero_control_p8_rad_micro +Checking test 157 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4859,15 +4804,15 @@ Checking test 158 atmaero_control_p8_rad_micro results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 304.259349 - 0: The maximum resident set size (KB) = 1502856 + 0: The total amount of wall time = 302.412461 + 0: The maximum resident set size (KB) = 1502632 -Test 158 atmaero_control_p8_rad_micro PASS +Test 157 atmaero_control_p8_rad_micro PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/regional_atmaq -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_2864/regional_atmaq -Checking test 159 regional_atmaq results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_18544/regional_atmaq +Checking test 158 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing sfcf006.nc .........OK @@ -4882,12 +4827,12 @@ Checking test 159 regional_atmaq results .... Comparing RESTART/phy_data.nc .........OK Comparing RESTART/sfc_data.nc .........OK - 0: The total amount of wall time = 707.934887 - 0: The maximum resident set size (KB) = 742596 + 0: The total amount of wall time = 706.934269 + 0: The maximum resident set size (KB) = 742780 -Test 159 regional_atmaq PASS +Test 158 regional_atmaq PASS REGRESSION TEST WAS SUCCESSFUL -Fri Nov 11 04:15:04 EST 2022 -Elapsed time: 04h:03m:22s. Have a nice day! +Wed Nov 16 03:05:02 EST 2022 +Elapsed time: 07h:46m:37s. Have a nice day! diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index a4d7347607..97b0bde170 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,21 +1,21 @@ -Fri Nov 11 00:48:59 UTC 2022 +Tue Nov 15 22:17:58 UTC 2022 Start Regression test -Compile 001 elapsed time 224 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 002 elapsed time 213 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 003 elapsed time 358 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 004 elapsed time 98 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 005 elapsed time 224 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 511 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 007 elapsed time 349 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 407 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 299 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 010 elapsed time 284 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 011 elapsed time 782 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 012 elapsed time 695 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 001 elapsed time 192 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 002 elapsed time 198 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 003 elapsed time 318 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 004 elapsed time 102 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 005 elapsed time 193 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 385 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 318 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 315 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 269 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 010 elapsed time 238 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 011 elapsed time 143 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 012 elapsed time 117 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/GNU/control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6916/control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_871/control Checking test 001 control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -62,14 +62,14 @@ Checking test 001 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 828.354450 - 0: The maximum resident set size (KB) = 477204 + 0: The total amount of wall time = 835.784299 + 0: The maximum resident set size (KB) = 479636 Test 001 control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/GNU/control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6916/control_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_871/control_restart Checking test 002 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -108,14 +108,14 @@ Checking test 002 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 406.170738 - 0: The maximum resident set size (KB) = 185696 + 0: The total amount of wall time = 410.867988 + 0: The maximum resident set size (KB) = 181108 Test 002 control_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/GNU/control_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6916/control_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_871/control_c48 Checking test 003 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -154,14 +154,14 @@ Checking test 003 control_c48 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0: The total amount of wall time = 673.611712 -0: The maximum resident set size (KB) = 702808 +0: The total amount of wall time = 674.928926 +0: The maximum resident set size (KB) = 706124 Test 003 control_c48 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/GNU/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6916/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_871/control_stochy Checking test 004 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -172,14 +172,14 @@ Checking test 004 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 646.396571 - 0: The maximum resident set size (KB) = 478212 + 0: The total amount of wall time = 660.126304 + 0: The maximum resident set size (KB) = 478848 Test 004 control_stochy PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/GNU/control_ras -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6916/control_ras +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_871/control_ras Checking test 005 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -190,14 +190,14 @@ Checking test 005 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 821.844603 - 0: The maximum resident set size (KB) = 490000 + 0: The total amount of wall time = 836.415961 + 0: The maximum resident set size (KB) = 486048 Test 005 control_ras PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/GNU/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6916/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_871/control_p8 Checking test 006 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -244,14 +244,14 @@ Checking test 006 control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 885.489627 - 0: The maximum resident set size (KB) = 1233376 + 0: The total amount of wall time = 901.858418 + 0: The maximum resident set size (KB) = 1235396 Test 006 control_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6916/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_871/rap_control Checking test 007 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -298,14 +298,14 @@ Checking test 007 rap_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1487.218015 - 0: The maximum resident set size (KB) = 832176 + 0: The total amount of wall time = 1485.941833 + 0: The maximum resident set size (KB) = 833148 Test 007 rap_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6916/rap_decomp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_871/rap_decomp Checking test 008 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -352,14 +352,14 @@ Checking test 008 rap_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1477.957785 - 0: The maximum resident set size (KB) = 831416 + 0: The total amount of wall time = 1470.806687 + 0: The maximum resident set size (KB) = 829420 Test 008 rap_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6916/rap_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_871/rap_2threads Checking test 009 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -406,14 +406,14 @@ Checking test 009 rap_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1438.086002 - 0: The maximum resident set size (KB) = 894796 + 0: The total amount of wall time = 1448.867322 + 0: The maximum resident set size (KB) = 895576 Test 009 rap_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6916/rap_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_871/rap_restart Checking test 010 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -452,14 +452,14 @@ Checking test 010 rap_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 721.650731 - 0: The maximum resident set size (KB) = 545260 + 0: The total amount of wall time = 711.266254 + 0: The maximum resident set size (KB) = 543700 Test 010 rap_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6916/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_871/rap_sfcdiff Checking test 011 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -506,14 +506,14 @@ Checking test 011 rap_sfcdiff results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1477.832494 - 0: The maximum resident set size (KB) = 829404 + 0: The total amount of wall time = 1472.683069 + 0: The maximum resident set size (KB) = 832432 Test 011 rap_sfcdiff PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6916/rap_sfcdiff_decomp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_871/rap_sfcdiff_decomp Checking test 012 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -560,14 +560,14 @@ Checking test 012 rap_sfcdiff_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1452.750649 - 0: The maximum resident set size (KB) = 828856 + 0: The total amount of wall time = 1441.161657 + 0: The maximum resident set size (KB) = 829484 Test 012 rap_sfcdiff_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6916/rap_sfcdiff_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_871/rap_sfcdiff_restart Checking test 013 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -606,14 +606,14 @@ Checking test 013 rap_sfcdiff_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1081.654087 - 0: The maximum resident set size (KB) = 540552 + 0: The total amount of wall time = 1064.292655 + 0: The maximum resident set size (KB) = 542008 Test 013 rap_sfcdiff_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6916/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_871/hrrr_control Checking test 014 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -660,14 +660,14 @@ Checking test 014 hrrr_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1461.238031 - 0: The maximum resident set size (KB) = 824012 + 0: The total amount of wall time = 1418.918766 + 0: The maximum resident set size (KB) = 830172 Test 014 hrrr_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6916/hrrr_control_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_871/hrrr_control_2threads Checking test 015 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -714,14 +714,14 @@ Checking test 015 hrrr_control_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1399.217897 - 0: The maximum resident set size (KB) = 888268 + 0: The total amount of wall time = 1409.165906 + 0: The maximum resident set size (KB) = 891196 Test 015 hrrr_control_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6916/hrrr_control_decomp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_871/hrrr_control_decomp Checking test 016 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -768,14 +768,14 @@ Checking test 016 hrrr_control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1457.988122 - 0: The maximum resident set size (KB) = 829500 + 0: The total amount of wall time = 1415.215608 + 0: The maximum resident set size (KB) = 824916 Test 016 hrrr_control_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6916/hrrr_control_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_871/hrrr_control_restart Checking test 017 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -814,14 +814,14 @@ Checking test 017 hrrr_control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1043.239998 - 0: The maximum resident set size (KB) = 535456 + 0: The total amount of wall time = 1019.433934 + 0: The maximum resident set size (KB) = 535492 Test 017 hrrr_control_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/GNU/rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6916/rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_871/rrfs_v1beta Checking test 018 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -868,14 +868,14 @@ Checking test 018 rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1482.340682 - 0: The maximum resident set size (KB) = 833580 + 0: The total amount of wall time = 1460.768226 + 0: The maximum resident set size (KB) = 823948 Test 018 rrfs_v1beta PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/GNU/rrfs_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6916/rrfs_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_871/rrfs_conus13km_hrrr_warm Checking test 019 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -884,14 +884,14 @@ Checking test 019 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 794.218445 - 0: The maximum resident set size (KB) = 635116 + 0: The total amount of wall time = 790.531974 + 0: The maximum resident set size (KB) = 637192 Test 019 rrfs_conus13km_hrrr_warm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6916/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_871/rrfs_smoke_conus13km_hrrr_warm Checking test 020 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -900,14 +900,14 @@ Checking test 020 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 801.893949 - 0: The maximum resident set size (KB) = 651316 + 0: The total amount of wall time = 791.629946 + 0: The maximum resident set size (KB) = 651212 Test 020 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/GNU/rrfs_conus13km_radar_tten_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6916/rrfs_conus13km_radar_tten_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_871/rrfs_conus13km_radar_tten_warm Checking test 021 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -916,14 +916,14 @@ Checking test 021 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 752.992827 - 0: The maximum resident set size (KB) = 641044 + 0: The total amount of wall time = 765.673270 + 0: The maximum resident set size (KB) = 638900 Test 021 rrfs_conus13km_radar_tten_warm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/GNU/rrfs_conus13km_radar_tten_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6916/rrfs_conus13km_radar_tten_warm_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_871/rrfs_conus13km_radar_tten_warm_2threads Checking test 022 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -932,222 +932,222 @@ Checking test 022 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 1025.286079 - 0: The maximum resident set size (KB) = 636284 + 0: The total amount of wall time = 1005.133425 + 0: The maximum resident set size (KB) = 634596 Test 022 rrfs_conus13km_radar_tten_warm_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/GNU/control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6916/control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_871/control_debug Checking test 023 control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 102.796803 - 0: The maximum resident set size (KB) = 472356 + 0: The total amount of wall time = 100.138352 + 0: The maximum resident set size (KB) = 471428 Test 023 control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/GNU/control_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6916/control_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_871/control_diag_debug Checking test 024 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 130.590470 - 0: The maximum resident set size (KB) = 534112 + 0: The total amount of wall time = 128.058333 + 0: The maximum resident set size (KB) = 528396 Test 024 control_diag_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/GNU/regional_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6916/regional_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_871/regional_debug Checking test 025 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 651.347598 - 0: The maximum resident set size (KB) = 588536 + 0: The total amount of wall time = 746.876497 + 0: The maximum resident set size (KB) = 590628 Test 025 regional_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/GNU/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6916/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_871/rap_control_debug Checking test 026 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 171.833662 - 0: The maximum resident set size (KB) = 845176 + 0: The total amount of wall time = 172.388108 + 0: The maximum resident set size (KB) = 845392 Test 026 rap_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/GNU/hrrr_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6916/hrrr_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_871/hrrr_control_debug Checking test 027 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 174.033728 - 0: The maximum resident set size (KB) = 837212 + 0: The total amount of wall time = 173.205191 + 0: The maximum resident set size (KB) = 836968 Test 027 hrrr_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/GNU/rap_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6916/rap_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_871/rap_diag_debug Checking test 028 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 212.470600 - 0: The maximum resident set size (KB) = 923528 + 0: The total amount of wall time = 209.678208 + 0: The maximum resident set size (KB) = 928164 Test 028 rap_diag_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/GNU/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6916/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_871/rap_noah_sfcdiff_cires_ugwp_debug Checking test 029 rap_noah_sfcdiff_cires_ugwp_debug 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.850869 - 0: The maximum resident set size (KB) = 838496 + 0: The total amount of wall time = 277.562561 + 0: The maximum resident set size (KB) = 843036 Test 029 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/GNU/rap_progcld_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6916/rap_progcld_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_871/rap_progcld_thompson_debug Checking test 030 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 172.350522 - 0: The maximum resident set size (KB) = 839316 + 0: The total amount of wall time = 170.694632 + 0: The maximum resident set size (KB) = 845600 Test 030 rap_progcld_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/GNU/rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6916/rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_871/rrfs_v1beta_debug Checking test 031 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 174.334300 - 0: The maximum resident set size (KB) = 842184 + 0: The total amount of wall time = 168.557503 + 0: The maximum resident set size (KB) = 843440 Test 031 rrfs_v1beta_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/GNU/control_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6916/control_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_871/control_ras_debug Checking test 032 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 103.504031 - 0: The maximum resident set size (KB) = 480896 + 0: The total amount of wall time = 103.356177 + 0: The maximum resident set size (KB) = 482276 Test 032 control_ras_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/GNU/control_stochy_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6916/control_stochy_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_871/control_stochy_debug Checking test 033 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 118.761597 - 0: The maximum resident set size (KB) = 472864 + 0: The total amount of wall time = 121.577723 + 0: The maximum resident set size (KB) = 477964 Test 033 control_stochy_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/GNU/control_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6916/control_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_871/control_debug_p8 Checking test 034 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 116.149918 - 0: The maximum resident set size (KB) = 1233116 + 0: The total amount of wall time = 117.363077 + 0: The maximum resident set size (KB) = 1232560 Test 034 control_debug_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/GNU/rrfs_conus13km_hrrr_warm_debugs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6916/rrfs_conus13km_hrrr_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_871/rrfs_conus13km_hrrr_warm_debug Checking test 035 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 552.854587 - 0: The maximum resident set size (KB) = 644784 + 0: The total amount of wall time = 563.139138 + 0: The maximum resident set size (KB) = 647404 Test 035 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/GNU/rrfs_conus13km_radar_tten_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6916/rrfs_conus13km_radar_tten_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_871/rrfs_conus13km_radar_tten_warm_debug Checking test 036 rrfs_conus13km_radar_tten_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 563.065742 - 0: The maximum resident set size (KB) = 648648 + 0: The total amount of wall time = 561.762777 + 0: The maximum resident set size (KB) = 649184 Test 036 rrfs_conus13km_radar_tten_warm_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/GNU/control_wam_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6916/control_wam_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_871/control_wam_debug Checking test 037 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 187.166895 - 0: The maximum resident set size (KB) = 191108 + 0: The total amount of wall time = 180.799685 + 0: The maximum resident set size (KB) = 195036 Test 037 control_wam_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6916/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_871/rap_control_dyn32_phy32 Checking test 038 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1194,14 +1194,14 @@ Checking test 038 rap_control_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1457.530792 - 0: The maximum resident set size (KB) = 689768 + 0: The total amount of wall time = 1459.198783 + 0: The maximum resident set size (KB) = 684688 Test 038 rap_control_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6916/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_871/hrrr_control_dyn32_phy32 Checking test 039 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1248,14 +1248,14 @@ Checking test 039 hrrr_control_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 731.195319 - 0: The maximum resident set size (KB) = 685428 + 0: The total amount of wall time = 743.329937 + 0: The maximum resident set size (KB) = 688524 Test 039 hrrr_control_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6916/rap_2threads_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_871/rap_2threads_dyn32_phy32 Checking test 040 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1302,14 +1302,14 @@ Checking test 040 rap_2threads_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1413.306048 - 0: The maximum resident set size (KB) = 729896 + 0: The total amount of wall time = 1447.423346 + 0: The maximum resident set size (KB) = 728172 Test 040 rap_2threads_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6916/hrrr_control_2threads_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_871/hrrr_control_2threads_dyn32_phy32 Checking test 041 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1356,14 +1356,14 @@ Checking test 041 hrrr_control_2threads_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 699.566250 - 0: The maximum resident set size (KB) = 728128 + 0: The total amount of wall time = 705.723902 + 0: The maximum resident set size (KB) = 724936 Test 041 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6916/hrrr_control_decomp_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_871/hrrr_control_decomp_dyn32_phy32 Checking test 042 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1410,14 +1410,14 @@ Checking test 042 hrrr_control_decomp_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 720.713236 - 0: The maximum resident set size (KB) = 691716 + 0: The total amount of wall time = 726.975671 + 0: The maximum resident set size (KB) = 688836 Test 042 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6916/rap_restart_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_871/rap_restart_dyn32_phy32 Checking test 043 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -1456,14 +1456,14 @@ Checking test 043 rap_restart_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1073.284817 - 0: The maximum resident set size (KB) = 511608 + 0: The total amount of wall time = 1073.187779 + 0: The maximum resident set size (KB) = 512844 Test 043 rap_restart_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6916/hrrr_control_restart_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_871/hrrr_control_restart_dyn32_phy32 Checking test 044 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -1502,14 +1502,14 @@ Checking test 044 hrrr_control_restart_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 356.559640 - 0: The maximum resident set size (KB) = 508640 + 0: The total amount of wall time = 352.319868 + 0: The maximum resident set size (KB) = 508792 Test 044 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/GNU/rap_control_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6916/rap_control_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_871/rap_control_dyn64_phy32 Checking test 045 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1556,56 +1556,56 @@ Checking test 045 rap_control_dyn64_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1054.785719 - 0: The maximum resident set size (KB) = 707256 + 0: The total amount of wall time = 1049.468449 + 0: The maximum resident set size (KB) = 705372 Test 045 rap_control_dyn64_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/GNU/rap_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6916/rap_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_871/rap_control_debug_dyn32_phy32 Checking test 046 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 175.432652 - 0: The maximum resident set size (KB) = 699444 + 0: The total amount of wall time = 168.975131 + 0: The maximum resident set size (KB) = 700840 Test 046 rap_control_debug_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/GNU/hrrr_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6916/hrrr_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_871/hrrr_control_debug_dyn32_phy32 Checking test 047 hrrr_control_debug_dyn32_phy32 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.245375 - 0: The maximum resident set size (KB) = 695924 + 0: The total amount of wall time = 165.476581 + 0: The maximum resident set size (KB) = 698144 Test 047 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/GNU/rap_control_debug_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6916/rap_control_dyn64_phy32_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_871/rap_control_dyn64_phy32_debug Checking test 048 rap_control_dyn64_phy32_debug 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.648313 - 0: The maximum resident set size (KB) = 717232 + 0: The total amount of wall time = 203.239841 + 0: The maximum resident set size (KB) = 715936 Test 048 rap_control_dyn64_phy32_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/GNU/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6916/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_871/cpld_control_p8 Checking test 049 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1670,14 +1670,14 @@ Checking test 049 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1730.304108 - 0: The maximum resident set size (KB) = 1431920 + 0: The total amount of wall time = 1681.281243 + 0: The maximum resident set size (KB) = 1432840 -Test 049 cpld_control_p8 PASS +Test 049 cpld_control_p8 PASS Tries: 2 baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/GNU/cpld_control_c96_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6916/cpld_control_nowave_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_871/cpld_control_nowave_noaero_p8 Checking test 050 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1739,14 +1739,14 @@ Checking test 050 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 1196.269365 - 0: The maximum resident set size (KB) = 1327512 + 0: The total amount of wall time = 1222.988203 + 0: The maximum resident set size (KB) = 1328448 Test 050 cpld_control_nowave_noaero_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/GNU/cpld_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6916/cpld_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_871/cpld_debug_p8 Checking test 051 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1799,25 +1799,25 @@ Checking test 051 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 832.577108 - 0: The maximum resident set size (KB) = 1442512 + 0: The total amount of wall time = 840.661237 + 0: The maximum resident set size (KB) = 1443244 Test 051 cpld_debug_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/GNU/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6916/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_871/datm_cdeps_control_cfsr Checking test 052 datm_cdeps_control_cfsr results .... Comparing RESTART/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 = 176.454536 - 0: The maximum resident set size (KB) = 666592 + 0: The total amount of wall time = 173.038106 + 0: The maximum resident set size (KB) = 665840 Test 052 datm_cdeps_control_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Fri Nov 11 02:01:58 UTC 2022 -Elapsed time: 01h:12m:59s. Have a nice day! +Wed Nov 16 00:59:14 UTC 2022 +Elapsed time: 02h:41m:17s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index 8901a67702..2768c298a4 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,34 +1,34 @@ -Fri Nov 11 00:47:50 UTC 2022 +Tue Nov 15 22:02:58 UTC 2022 Start Regression test -Compile 001 elapsed time 679 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 919 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 311 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 004 elapsed time 288 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 528 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 006 elapsed time 546 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 007 elapsed time 373 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 008 elapsed time 439 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 009 elapsed time 364 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 373 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 983 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 012 elapsed time 663 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 013 elapsed time 780 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 014 elapsed time 603 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 015 elapsed time 618 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 574 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 017 elapsed time 619 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 018 elapsed time 877 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 019 elapsed time 181 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 020 elapsed time 106 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 021 elapsed time 68 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 022 elapsed time 361 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 536 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 024 elapsed time 365 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 025 elapsed time 341 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 001 elapsed time 604 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 555 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 209 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 004 elapsed time 196 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 383 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 006 elapsed time 388 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 007 elapsed time 350 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 008 elapsed time 351 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 009 elapsed time 340 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 313 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 677 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 012 elapsed time 189 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 013 elapsed time 348 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 elapsed time 317 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 015 elapsed time 158 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 158 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 017 elapsed time 538 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 018 elapsed time 579 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 019 elapsed time 186 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 020 elapsed time 122 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 021 elapsed time 93 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 022 elapsed time 368 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 545 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 024 elapsed time 373 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 025 elapsed time 339 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/cpld_control_p8 Checking test 001 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -93,14 +93,14 @@ Checking test 001 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 334.519590 - 0: The maximum resident set size (KB) = 3181116 + 0: The total amount of wall time = 338.117534 + 0: The maximum resident set size (KB) = 3185008 Test 001 cpld_control_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/cpld_restart_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/cpld_restart_p8 Checking test 002 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -153,14 +153,14 @@ Checking test 002 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 192.160324 - 0: The maximum resident set size (KB) = 3047508 + 0: The total amount of wall time = 190.219213 + 0: The maximum resident set size (KB) = 3052164 Test 002 cpld_restart_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/cpld_2threads_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/cpld_2threads_p8 Checking test 003 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -213,14 +213,14 @@ Checking test 003 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 415.516360 - 0: The maximum resident set size (KB) = 3447448 + 0: The total amount of wall time = 419.797193 + 0: The maximum resident set size (KB) = 3453256 Test 003 cpld_2threads_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/cpld_esmfthreads_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/cpld_esmfthreads_p8 Checking test 004 cpld_esmfthreads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -273,14 +273,14 @@ Checking test 004 cpld_esmfthreads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 348.875433 - 0: The maximum resident set size (KB) = 3510860 + 0: The total amount of wall time = 353.073390 + 0: The maximum resident set size (KB) = 3512396 Test 004 cpld_esmfthreads_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/cpld_decomp_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/cpld_decomp_p8 Checking test 005 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -333,14 +333,14 @@ Checking test 005 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 335.273493 - 0: The maximum resident set size (KB) = 3168612 + 0: The total amount of wall time = 334.680859 + 0: The maximum resident set size (KB) = 3170888 Test 005 cpld_decomp_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/cpld_mpi_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/cpld_mpi_p8 Checking test 006 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -393,14 +393,14 @@ Checking test 006 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 273.281346 - 0: The maximum resident set size (KB) = 3022384 + 0: The total amount of wall time = 278.199717 + 0: The maximum resident set size (KB) = 3022436 Test 006 cpld_mpi_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/cpld_control_ciceC_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/cpld_control_ciceC_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/cpld_control_ciceC_p8 Checking test 007 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -465,14 +465,14 @@ Checking test 007 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 338.418418 - 0: The maximum resident set size (KB) = 3174092 + 0: The total amount of wall time = 334.502915 + 0: The maximum resident set size (KB) = 3181852 Test 007 cpld_control_ciceC_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/cpld_control_c192_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/cpld_control_c192_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/cpld_control_c192_p8 Checking test 008 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -525,14 +525,14 @@ Checking test 008 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 654.325062 - 0: The maximum resident set size (KB) = 3223172 + 0: The total amount of wall time = 657.354489 + 0: The maximum resident set size (KB) = 3218924 Test 008 cpld_control_c192_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/cpld_control_c192_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/cpld_restart_c192_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/cpld_restart_c192_p8 Checking test 009 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -585,14 +585,14 @@ Checking test 009 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 410.787734 - 0: The maximum resident set size (KB) = 3134288 + 0: The total amount of wall time = 411.288055 + 0: The maximum resident set size (KB) = 3141212 Test 009 cpld_restart_c192_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/cpld_bmark_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/cpld_bmark_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/cpld_bmark_p8 Checking test 010 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -640,14 +640,14 @@ Checking test 010 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 824.517852 - 0: The maximum resident set size (KB) = 3989224 + 0: The total amount of wall time = 811.985328 + 0: The maximum resident set size (KB) = 4037160 Test 010 cpld_bmark_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/cpld_bmark_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/cpld_restart_bmark_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/cpld_restart_bmark_p8 Checking test 011 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -695,70 +695,15 @@ Checking test 011 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 498.504661 - 0: The maximum resident set size (KB) = 3945916 + 0: The total amount of wall time = 466.147205 + 0: The maximum resident set size (KB) = 3974580 Test 011 cpld_restart_bmark_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/cpld_bmark_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/cpld_bmark_esmfthreads_p8 -Checking test 012 cpld_bmark_esmfthreads_p8 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/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/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 = 763.562789 - 0: The maximum resident set size (KB) = 4030664 - -Test 012 cpld_bmark_esmfthreads_p8 PASS - - baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/cpld_control_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/cpld_control_noaero_p8 -Checking test 013 cpld_control_noaero_p8 results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/cpld_control_noaero_p8 +Checking test 012 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -821,15 +766,15 @@ Checking test 013 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 229.175110 - 0: The maximum resident set size (KB) = 1732600 + 0: The total amount of wall time = 229.957110 + 0: The maximum resident set size (KB) = 1727348 -Test 013 cpld_control_noaero_p8 PASS +Test 012 cpld_control_noaero_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/cpld_control_c96_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/cpld_control_nowave_noaero_p8 -Checking test 014 cpld_control_nowave_noaero_p8 results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/cpld_control_nowave_noaero_p8 +Checking test 013 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -890,15 +835,15 @@ Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 252.555292 - 0: The maximum resident set size (KB) = 1759432 + 0: The total amount of wall time = 253.355589 + 0: The maximum resident set size (KB) = 1752996 -Test 014 cpld_control_nowave_noaero_p8 PASS +Test 013 cpld_control_nowave_noaero_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/cpld_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/cpld_debug_p8 -Checking test 015 cpld_debug_p8 results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/cpld_debug_p8 +Checking test 014 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK Comparing sfcf003.tile3.nc .........OK @@ -950,15 +895,15 @@ Checking test 015 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 660.153836 - 0: The maximum resident set size (KB) = 3243760 + 0: The total amount of wall time = 670.072488 + 0: The maximum resident set size (KB) = 3248576 -Test 015 cpld_debug_p8 PASS +Test 014 cpld_debug_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/cpld_debug_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/cpld_debug_noaero_p8 -Checking test 016 cpld_debug_noaero_p8 results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/cpld_debug_noaero_p8 +Checking test 015 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK Comparing sfcf003.tile3.nc .........OK @@ -1009,15 +954,15 @@ Checking test 016 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 406.956082 - 0: The maximum resident set size (KB) = 1745476 + 0: The total amount of wall time = 403.791667 + 0: The maximum resident set size (KB) = 1748176 -Test 016 cpld_debug_noaero_p8 PASS +Test 015 cpld_debug_noaero_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/cpld_control_noaero_p8_agrid -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/cpld_control_noaero_p8_agrid -Checking test 017 cpld_control_noaero_p8_agrid results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/cpld_control_noaero_p8_agrid +Checking test 016 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -1078,15 +1023,15 @@ Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 260.175935 - 0: The maximum resident set size (KB) = 1753040 + 0: The total amount of wall time = 262.495395 + 0: The maximum resident set size (KB) = 1760524 -Test 017 cpld_control_noaero_p8_agrid PASS +Test 016 cpld_control_noaero_p8_agrid PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/cpld_control_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/cpld_control_c48 -Checking test 018 cpld_control_c48 results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/cpld_control_c48 +Checking test 017 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -1135,15 +1080,15 @@ Checking test 018 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 502.626603 - 0: The maximum resident set size (KB) = 2796972 + 0: The total amount of wall time = 505.439428 + 0: The maximum resident set size (KB) = 2790360 -Test 018 cpld_control_c48 PASS +Test 017 cpld_control_c48 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/cpld_warmstart_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/cpld_warmstart_c48 -Checking test 019 cpld_warmstart_c48 results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/cpld_warmstart_c48 +Checking test 018 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK Comparing sfcf006.tile3.nc .........OK @@ -1192,15 +1137,15 @@ Checking test 019 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 137.541206 - 0: The maximum resident set size (KB) = 2800912 + 0: The total amount of wall time = 135.365728 + 0: The maximum resident set size (KB) = 2794460 -Test 019 cpld_warmstart_c48 PASS +Test 018 cpld_warmstart_c48 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/cpld_warmstart_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/cpld_restart_c48 -Checking test 020 cpld_restart_c48 results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/cpld_restart_c48 +Checking test 019 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK Comparing sfcf006.tile3.nc .........OK @@ -1249,15 +1194,15 @@ Checking test 020 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 74.922325 - 0: The maximum resident set size (KB) = 2227440 + 0: The total amount of wall time = 75.133804 + 0: The maximum resident set size (KB) = 2241968 -Test 020 cpld_restart_c48 PASS +Test 019 cpld_restart_c48 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/control -Checking test 021 control results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/control +Checking test 020 control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1303,15 +1248,15 @@ Checking test 021 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 136.312697 - 0: The maximum resident set size (KB) = 635864 + 0: The total amount of wall time = 133.832482 + 0: The maximum resident set size (KB) = 631980 -Test 021 control PASS +Test 020 control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/control_decomp -Checking test 022 control_decomp results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/control_decomp +Checking test 021 control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1353,15 +1298,15 @@ Checking test 022 control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 140.997187 - 0: The maximum resident set size (KB) = 623596 + 0: The total amount of wall time = 141.204114 + 0: The maximum resident set size (KB) = 626260 -Test 022 control_decomp PASS +Test 021 control_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/control_2dwrtdecomp -Checking test 023 control_2dwrtdecomp results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/control_2dwrtdecomp +Checking test 022 control_2dwrtdecomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1371,15 +1316,15 @@ Checking test 023 control_2dwrtdecomp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 132.434690 - 0: The maximum resident set size (KB) = 635308 + 0: The total amount of wall time = 133.139399 + 0: The maximum resident set size (KB) = 631824 -Test 023 control_2dwrtdecomp PASS +Test 022 control_2dwrtdecomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/control_2threads -Checking test 024 control_2threads results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/control_2threads +Checking test 023 control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1421,15 +1366,15 @@ Checking test 024 control_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 164.395736 - 0: The maximum resident set size (KB) = 669672 + 0: The total amount of wall time = 162.685949 + 0: The maximum resident set size (KB) = 677596 -Test 024 control_2threads PASS +Test 023 control_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/control_restart -Checking test 025 control_restart results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/control_restart +Checking test 024 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1467,15 +1412,15 @@ Checking test 025 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 69.043504 - 0: The maximum resident set size (KB) = 463060 + 0: The total amount of wall time = 69.754045 + 0: The maximum resident set size (KB) = 467148 -Test 025 control_restart PASS +Test 024 control_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/control_fhzero -Checking test 026 control_fhzero results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/control_fhzero +Checking test 025 control_fhzero results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK @@ -1517,15 +1462,15 @@ Checking test 026 control_fhzero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 165.188588 - 0: The maximum resident set size (KB) = 631448 + 0: The total amount of wall time = 126.269577 + 0: The maximum resident set size (KB) = 631972 -Test 026 control_fhzero PASS +Test 025 control_fhzero PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_CubedSphereGrid -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/control_CubedSphereGrid -Checking test 027 control_CubedSphereGrid results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/control_CubedSphereGrid +Checking test 026 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -1551,29 +1496,29 @@ Checking test 027 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 127.687136 - 0: The maximum resident set size (KB) = 627192 + 0: The total amount of wall time = 128.430943 + 0: The maximum resident set size (KB) = 634656 -Test 027 control_CubedSphereGrid PASS +Test 026 control_CubedSphereGrid PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_CubedSphereGrid_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/control_CubedSphereGrid_parallel -Checking test 028 control_CubedSphereGrid_parallel results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/control_CubedSphereGrid_parallel +Checking test 027 control_CubedSphereGrid_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 127.552933 - 0: The maximum resident set size (KB) = 634440 + 0: The total amount of wall time = 126.068905 + 0: The maximum resident set size (KB) = 633860 -Test 028 control_CubedSphereGrid_parallel PASS +Test 027 control_CubedSphereGrid_parallel PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_latlon -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/control_latlon -Checking test 029 control_latlon results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/control_latlon +Checking test 028 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1583,17 +1528,17 @@ Checking test 029 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 132.214753 - 0: The maximum resident set size (KB) = 631524 + 0: The total amount of wall time = 131.758963 + 0: The maximum resident set size (KB) = 633284 -Test 029 control_latlon PASS +Test 028 control_latlon PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_wrtGauss_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/control_wrtGauss_netcdf_parallel -Checking test 030 control_wrtGauss_netcdf_parallel results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/control_wrtGauss_netcdf_parallel +Checking test 029 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK - Comparing sfcf024.nc ............ALT CHECK......OK + Comparing sfcf024.nc .........OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK @@ -1601,15 +1546,15 @@ Checking test 030 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 170.963735 - 0: The maximum resident set size (KB) = 631476 + 0: The total amount of wall time = 133.759754 + 0: The maximum resident set size (KB) = 632124 -Test 030 control_wrtGauss_netcdf_parallel PASS +Test 029 control_wrtGauss_netcdf_parallel PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/control_c48 -Checking test 031 control_c48 results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/control_c48 +Checking test 030 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1647,15 +1592,15 @@ Checking test 031 control_c48 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0: The total amount of wall time = 346.112735 -0: The maximum resident set size (KB) = 821860 +0: The total amount of wall time = 347.065711 +0: The maximum resident set size (KB) = 819136 -Test 031 control_c48 PASS +Test 030 control_c48 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_c192 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/control_c192 -Checking test 032 control_c192 results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/control_c192 +Checking test 031 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1665,15 +1610,15 @@ Checking test 032 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 524.421729 - 0: The maximum resident set size (KB) = 772388 + 0: The total amount of wall time = 521.637910 + 0: The maximum resident set size (KB) = 770264 -Test 032 control_c192 PASS +Test 031 control_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_c384 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/control_c384 -Checking test 033 control_c384 results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/control_c384 +Checking test 032 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1683,15 +1628,15 @@ Checking test 033 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 699.086297 - 0: The maximum resident set size (KB) = 1094168 + 0: The total amount of wall time = 694.898488 + 0: The maximum resident set size (KB) = 1094056 -Test 033 control_c384 PASS +Test 032 control_c384 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_c384gdas -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/control_c384gdas -Checking test 034 control_c384gdas results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/control_c384gdas +Checking test 033 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK Comparing atmf000.nc .........OK @@ -1733,15 +1678,15 @@ Checking test 034 control_c384gdas results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 583.830542 - 0: The maximum resident set size (KB) = 1249208 + 0: The total amount of wall time = 582.700148 + 0: The maximum resident set size (KB) = 1249776 -Test 034 control_c384gdas PASS +Test 033 control_c384gdas PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_c384_progsigma -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/control_c384_progsigma -Checking test 035 control_c384_progsigma results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/control_c384_progsigma +Checking test 034 control_c384_progsigma results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1751,15 +1696,15 @@ Checking test 035 control_c384_progsigma results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 710.541304 - 0: The maximum resident set size (KB) = 1079044 + 0: The total amount of wall time = 705.630892 + 0: The maximum resident set size (KB) = 1077188 -Test 035 control_c384_progsigma PASS +Test 034 control_c384_progsigma PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/control_stochy -Checking test 036 control_stochy results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/control_stochy +Checking test 035 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1769,29 +1714,29 @@ Checking test 036 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 88.909210 - 0: The maximum resident set size (KB) = 636152 + 0: The total amount of wall time = 86.851750 + 0: The maximum resident set size (KB) = 636140 -Test 036 control_stochy PASS +Test 035 control_stochy PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/control_stochy_restart -Checking test 037 control_stochy_restart results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/control_stochy_restart +Checking test 036 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 45.556294 - 0: The maximum resident set size (KB) = 494760 + 0: The total amount of wall time = 46.246694 + 0: The maximum resident set size (KB) = 491936 -Test 037 control_stochy_restart PASS +Test 036 control_stochy_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_lndp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/control_lndp -Checking test 038 control_lndp results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/control_lndp +Checking test 037 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1801,15 +1746,15 @@ Checking test 038 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 81.458386 - 0: The maximum resident set size (KB) = 636176 + 0: The total amount of wall time = 79.243240 + 0: The maximum resident set size (KB) = 638008 -Test 038 control_lndp PASS +Test 037 control_lndp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_iovr4 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/control_iovr4 -Checking test 039 control_iovr4 results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/control_iovr4 +Checking test 038 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1823,15 +1768,15 @@ Checking test 039 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 134.867814 - 0: The maximum resident set size (KB) = 630208 + 0: The total amount of wall time = 134.711600 + 0: The maximum resident set size (KB) = 634244 -Test 039 control_iovr4 PASS +Test 038 control_iovr4 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_iovr5 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/control_iovr5 -Checking test 040 control_iovr5 results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/control_iovr5 +Checking test 039 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1845,15 +1790,15 @@ Checking test 040 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 143.201727 - 0: The maximum resident set size (KB) = 635988 + 0: The total amount of wall time = 133.838570 + 0: The maximum resident set size (KB) = 633796 -Test 040 control_iovr5 PASS +Test 039 control_iovr5 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/control_p8 -Checking test 041 control_p8 results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/control_p8 +Checking test 040 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1899,15 +1844,15 @@ Checking test 041 control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 164.954192 - 0: The maximum resident set size (KB) = 1612636 + 0: The total amount of wall time = 165.367155 + 0: The maximum resident set size (KB) = 1608124 -Test 041 control_p8 PASS +Test 040 control_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_p8_lndp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/control_p8_lndp -Checking test 042 control_p8_lndp results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/control_p8_lndp +Checking test 041 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1925,15 +1870,15 @@ Checking test 042 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 310.259371 - 0: The maximum resident set size (KB) = 1615504 + 0: The total amount of wall time = 310.780962 + 0: The maximum resident set size (KB) = 1611788 -Test 042 control_p8_lndp PASS +Test 041 control_p8_lndp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/control_restart_p8 -Checking test 043 control_restart_p8 results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/control_restart_p8 +Checking test 042 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1971,15 +1916,15 @@ Checking test 043 control_restart_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 85.345912 - 0: The maximum resident set size (KB) = 876068 + 0: The total amount of wall time = 85.430594 + 0: The maximum resident set size (KB) = 860420 -Test 043 control_restart_p8 PASS +Test 042 control_restart_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/control_decomp_p8 -Checking test 044 control_decomp_p8 results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/control_decomp_p8 +Checking test 043 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2021,15 +1966,15 @@ Checking test 044 control_decomp_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 170.497176 - 0: The maximum resident set size (KB) = 1597776 + 0: The total amount of wall time = 170.792453 + 0: The maximum resident set size (KB) = 1592224 -Test 044 control_decomp_p8 PASS +Test 043 control_decomp_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/control_2threads_p8 -Checking test 045 control_2threads_p8 results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/control_2threads_p8 +Checking test 044 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2071,15 +2016,15 @@ Checking test 045 control_2threads_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 199.418972 - 0: The maximum resident set size (KB) = 1672804 + 0: The total amount of wall time = 199.081517 + 0: The maximum resident set size (KB) = 1672836 -Test 045 control_2threads_p8 PASS +Test 044 control_2threads_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_p8_rrtmgp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/control_p8_rrtmgp -Checking test 046 control_p8_rrtmgp results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/control_p8_rrtmgp +Checking test 045 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2125,15 +2070,15 @@ Checking test 046 control_p8_rrtmgp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 199.690424 - 0: The maximum resident set size (KB) = 1732760 + 0: The total amount of wall time = 198.679957 + 0: The maximum resident set size (KB) = 1737476 -Test 046 control_p8_rrtmgp PASS +Test 045 control_p8_rrtmgp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/merra2_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/merra2_thompson -Checking test 047 merra2_thompson results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/merra2_thompson +Checking test 046 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2179,15 +2124,15 @@ Checking test 047 merra2_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 169.441776 - 0: The maximum resident set size (KB) = 1613840 + 0: The total amount of wall time = 171.652061 + 0: The maximum resident set size (KB) = 1620392 -Test 047 merra2_thompson PASS +Test 046 merra2_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/regional_control -Checking test 048 regional_control results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/regional_control +Checking test 047 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2197,29 +2142,29 @@ Checking test 048 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 301.998342 - 0: The maximum resident set size (KB) = 870228 + 0: The total amount of wall time = 294.592806 + 0: The maximum resident set size (KB) = 871392 -Test 048 regional_control PASS +Test 047 regional_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/regional_restart -Checking test 049 regional_restart results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/regional_restart +Checking test 048 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 147.960301 - 0: The maximum resident set size (KB) = 864200 + 0: The total amount of wall time = 147.889678 + 0: The maximum resident set size (KB) = 863476 -Test 049 regional_restart PASS +Test 048 regional_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/regional_decomp -Checking test 050 regional_decomp results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/regional_decomp +Checking test 049 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2229,15 +2174,15 @@ Checking test 050 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 313.244547 - 0: The maximum resident set size (KB) = 859668 + 0: The total amount of wall time = 310.798590 + 0: The maximum resident set size (KB) = 859612 -Test 050 regional_decomp PASS +Test 049 regional_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/regional_2threads -Checking test 051 regional_2threads results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/regional_2threads +Checking test 050 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2247,44 +2192,44 @@ Checking test 051 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 226.732706 - 0: The maximum resident set size (KB) = 832540 + 0: The total amount of wall time = 227.545509 + 0: The maximum resident set size (KB) = 836276 -Test 051 regional_2threads PASS +Test 050 regional_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/regional_noquilt -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/regional_noquilt -Checking test 052 regional_noquilt results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/regional_noquilt +Checking test 051 regional_noquilt 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 = 322.691521 - 0: The maximum resident set size (KB) = 862316 + 0: The total amount of wall time = 324.961422 + 0: The maximum resident set size (KB) = 860180 -Test 052 regional_noquilt PASS +Test 051 regional_noquilt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/regional_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/regional_netcdf_parallel -Checking test 053 regional_netcdf_parallel results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/regional_netcdf_parallel +Checking test 052 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc ............ALT CHECK......OK - 0: The total amount of wall time = 289.949033 - 0: The maximum resident set size (KB) = 860828 + 0: The total amount of wall time = 290.610182 + 0: The maximum resident set size (KB) = 856504 -Test 053 regional_netcdf_parallel PASS +Test 052 regional_netcdf_parallel PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/regional_2dwrtdecomp -Checking test 054 regional_2dwrtdecomp results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/regional_2dwrtdecomp +Checking test 053 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2294,15 +2239,15 @@ Checking test 054 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 295.462169 - 0: The maximum resident set size (KB) = 869456 + 0: The total amount of wall time = 292.329272 + 0: The maximum resident set size (KB) = 875112 -Test 054 regional_2dwrtdecomp PASS +Test 053 regional_2dwrtdecomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/fv3_regional_wofs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/regional_wofs -Checking test 055 regional_wofs results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/regional_wofs +Checking test 054 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2312,15 +2257,15 @@ Checking test 055 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 370.914806 - 0: The maximum resident set size (KB) = 629916 + 0: The total amount of wall time = 372.443073 + 0: The maximum resident set size (KB) = 625040 -Test 055 regional_wofs PASS +Test 054 regional_wofs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/rap_control -Checking test 056 rap_control results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/rap_control +Checking test 055 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2366,15 +2311,15 @@ Checking test 056 rap_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 438.640004 - 0: The maximum resident set size (KB) = 1046564 + 0: The total amount of wall time = 439.363990 + 0: The maximum resident set size (KB) = 1049428 -Test 056 rap_control PASS +Test 055 rap_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_rrtmgp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/rap_rrtmgp -Checking test 057 rap_rrtmgp results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/rap_rrtmgp +Checking test 056 rap_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2420,15 +2365,15 @@ Checking test 057 rap_rrtmgp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 475.054358 - 0: The maximum resident set size (KB) = 1208016 + 0: The total amount of wall time = 472.924049 + 0: The maximum resident set size (KB) = 1216024 -Test 057 rap_rrtmgp PASS +Test 056 rap_rrtmgp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/regional_spp_sppt_shum_skeb -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/regional_spp_sppt_shum_skeb -Checking test 058 regional_spp_sppt_shum_skeb results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/regional_spp_sppt_shum_skeb +Checking test 057 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -2438,15 +2383,15 @@ Checking test 058 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 290.666802 - 0: The maximum resident set size (KB) = 1173496 + 0: The total amount of wall time = 293.668361 + 0: The maximum resident set size (KB) = 1178936 -Test 058 regional_spp_sppt_shum_skeb PASS +Test 057 regional_spp_sppt_shum_skeb PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/rap_decomp -Checking test 059 rap_decomp results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/rap_decomp +Checking test 058 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2492,15 +2437,15 @@ Checking test 059 rap_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 461.264275 - 0: The maximum resident set size (KB) = 1001784 + 0: The total amount of wall time = 461.241693 + 0: The maximum resident set size (KB) = 999548 -Test 059 rap_decomp PASS +Test 058 rap_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/rap_2threads -Checking test 060 rap_2threads results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/rap_2threads +Checking test 059 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2546,15 +2491,15 @@ Checking test 060 rap_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 523.422199 - 0: The maximum resident set size (KB) = 1066824 + 0: The total amount of wall time = 524.601578 + 0: The maximum resident set size (KB) = 1053308 -Test 060 rap_2threads PASS +Test 059 rap_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/rap_restart -Checking test 061 rap_restart results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/rap_restart +Checking test 060 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2592,15 +2537,15 @@ Checking test 061 rap_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 221.628265 - 0: The maximum resident set size (KB) = 957752 + 0: The total amount of wall time = 222.289429 + 0: The maximum resident set size (KB) = 954276 -Test 061 rap_restart PASS +Test 060 rap_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/rap_sfcdiff -Checking test 062 rap_sfcdiff results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/rap_sfcdiff +Checking test 061 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2646,15 +2591,15 @@ Checking test 062 rap_sfcdiff results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 435.734385 - 0: The maximum resident set size (KB) = 1057516 + 0: The total amount of wall time = 436.459123 + 0: The maximum resident set size (KB) = 1058840 -Test 062 rap_sfcdiff PASS +Test 061 rap_sfcdiff PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/rap_sfcdiff_decomp -Checking test 063 rap_sfcdiff_decomp results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/rap_sfcdiff_decomp +Checking test 062 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2700,15 +2645,15 @@ Checking test 063 rap_sfcdiff_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 463.086454 - 0: The maximum resident set size (KB) = 1005908 + 0: The total amount of wall time = 463.860829 + 0: The maximum resident set size (KB) = 1004856 -Test 063 rap_sfcdiff_decomp PASS +Test 062 rap_sfcdiff_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/rap_sfcdiff_restart -Checking test 064 rap_sfcdiff_restart results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/rap_sfcdiff_restart +Checking test 063 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2746,15 +2691,15 @@ Checking test 064 rap_sfcdiff_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 325.691172 - 0: The maximum resident set size (KB) = 985340 + 0: The total amount of wall time = 326.226321 + 0: The maximum resident set size (KB) = 983520 -Test 064 rap_sfcdiff_restart PASS +Test 063 rap_sfcdiff_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/hrrr_control -Checking test 065 hrrr_control results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/hrrr_control +Checking test 064 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2800,15 +2745,15 @@ Checking test 065 hrrr_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 420.565378 - 0: The maximum resident set size (KB) = 1056476 + 0: The total amount of wall time = 422.589413 + 0: The maximum resident set size (KB) = 1060632 -Test 065 hrrr_control PASS +Test 064 hrrr_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/hrrr_control_decomp -Checking test 066 hrrr_control_decomp results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/hrrr_control_decomp +Checking test 065 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2854,15 +2799,15 @@ Checking test 066 hrrr_control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 441.664250 - 0: The maximum resident set size (KB) = 1000712 + 0: The total amount of wall time = 441.756744 + 0: The maximum resident set size (KB) = 998696 -Test 066 hrrr_control_decomp PASS +Test 065 hrrr_control_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/hrrr_control_2threads -Checking test 067 hrrr_control_2threads results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/hrrr_control_2threads +Checking test 066 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2908,15 +2853,15 @@ Checking test 067 hrrr_control_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 497.862277 - 0: The maximum resident set size (KB) = 1062404 + 0: The total amount of wall time = 494.940891 + 0: The maximum resident set size (KB) = 1060412 -Test 067 hrrr_control_2threads PASS +Test 066 hrrr_control_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/hrrr_control_restart -Checking test 068 hrrr_control_restart results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/hrrr_control_restart +Checking test 067 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2954,15 +2899,15 @@ Checking test 068 hrrr_control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 315.838911 - 0: The maximum resident set size (KB) = 984044 + 0: The total amount of wall time = 315.343042 + 0: The maximum resident set size (KB) = 974304 -Test 068 hrrr_control_restart PASS +Test 067 hrrr_control_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/rrfs_v1beta -Checking test 069 rrfs_v1beta results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/rrfs_v1beta +Checking test 068 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3008,15 +2953,15 @@ Checking test 069 rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 432.314361 - 0: The maximum resident set size (KB) = 1043556 + 0: The total amount of wall time = 429.640327 + 0: The maximum resident set size (KB) = 1046260 -Test 069 rrfs_v1beta PASS +Test 068 rrfs_v1beta PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rrfs_v1nssl -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/rrfs_v1nssl -Checking test 070 rrfs_v1nssl results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/rrfs_v1nssl +Checking test 069 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3030,15 +2975,15 @@ Checking test 070 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 515.068594 - 0: The maximum resident set size (KB) = 687880 + 0: The total amount of wall time = 512.567872 + 0: The maximum resident set size (KB) = 690720 -Test 070 rrfs_v1nssl PASS +Test 069 rrfs_v1nssl PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/rrfs_v1nssl_nohailnoccn -Checking test 071 rrfs_v1nssl_nohailnoccn results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/rrfs_v1nssl_nohailnoccn +Checking test 070 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3052,15 +2997,15 @@ Checking test 071 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 502.896004 - 0: The maximum resident set size (KB) = 758368 + 0: The total amount of wall time = 501.566407 + 0: The maximum resident set size (KB) = 750272 -Test 071 rrfs_v1nssl_nohailnoccn PASS +Test 070 rrfs_v1nssl_nohailnoccn PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rrfs_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/rrfs_conus13km_hrrr_warm -Checking test 072 rrfs_conus13km_hrrr_warm results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/rrfs_conus13km_hrrr_warm +Checking test 071 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -3068,15 +3013,15 @@ Checking test 072 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 126.055388 - 0: The maximum resident set size (KB) = 924632 + 0: The total amount of wall time = 125.703300 + 0: The maximum resident set size (KB) = 928668 -Test 072 rrfs_conus13km_hrrr_warm PASS +Test 071 rrfs_conus13km_hrrr_warm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/rrfs_smoke_conus13km_hrrr_warm -Checking test 073 rrfs_smoke_conus13km_hrrr_warm results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/rrfs_smoke_conus13km_hrrr_warm +Checking test 072 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -3084,15 +3029,15 @@ Checking test 073 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 141.467449 - 0: The maximum resident set size (KB) = 952732 + 0: The total amount of wall time = 141.371208 + 0: The maximum resident set size (KB) = 954912 -Test 073 rrfs_smoke_conus13km_hrrr_warm PASS +Test 072 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/rrfs_conus13km_radar_tten_warm -Checking test 074 rrfs_conus13km_radar_tten_warm results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/rrfs_conus13km_radar_tten_warm +Checking test 073 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -3100,15 +3045,15 @@ Checking test 074 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 126.993765 - 0: The maximum resident set size (KB) = 929012 + 0: The total amount of wall time = 127.229145 + 0: The maximum resident set size (KB) = 934120 -Test 074 rrfs_conus13km_radar_tten_warm PASS +Test 073 rrfs_conus13km_radar_tten_warm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rrfs_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/rrfs_conus13km_hrrr_warm_2threads -Checking test 075 rrfs_conus13km_hrrr_warm_2threads results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/rrfs_conus13km_hrrr_warm_2threads +Checking test 074 rrfs_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -3116,15 +3061,15 @@ Checking test 075 rrfs_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 95.913644 - 0: The maximum resident set size (KB) = 895772 + 0: The total amount of wall time = 96.660518 + 0: The maximum resident set size (KB) = 899144 -Test 075 rrfs_conus13km_hrrr_warm_2threads PASS +Test 074 rrfs_conus13km_hrrr_warm_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/rrfs_conus13km_radar_tten_warm_2threads -Checking test 076 rrfs_conus13km_radar_tten_warm_2threads results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/rrfs_conus13km_radar_tten_warm_2threads +Checking test 075 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -3132,15 +3077,15 @@ Checking test 076 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 97.183570 - 0: The maximum resident set size (KB) = 905696 + 0: The total amount of wall time = 96.100197 + 0: The maximum resident set size (KB) = 903492 -Test 076 rrfs_conus13km_radar_tten_warm_2threads PASS +Test 075 rrfs_conus13km_radar_tten_warm_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_csawmg -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/control_csawmg -Checking test 077 control_csawmg results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/control_csawmg +Checking test 076 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3150,15 +3095,15 @@ Checking test 077 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 339.744725 - 0: The maximum resident set size (KB) = 724248 + 0: The total amount of wall time = 342.063115 + 0: The maximum resident set size (KB) = 725548 -Test 077 control_csawmg PASS +Test 076 control_csawmg PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_csawmgt -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/control_csawmgt -Checking test 078 control_csawmgt results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/control_csawmgt +Checking test 077 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3168,15 +3113,15 @@ Checking test 078 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 333.378306 - 0: The maximum resident set size (KB) = 723824 + 0: The total amount of wall time = 333.821872 + 0: The maximum resident set size (KB) = 726964 -Test 078 control_csawmgt PASS +Test 077 control_csawmgt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_ras -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/control_ras -Checking test 079 control_ras results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/control_ras +Checking test 078 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3186,83 +3131,83 @@ Checking test 079 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 177.554295 - 0: The maximum resident set size (KB) = 717864 + 0: The total amount of wall time = 178.485404 + 0: The maximum resident set size (KB) = 716792 -Test 079 control_ras PASS +Test 078 control_ras PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_wam -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/control_wam -Checking test 080 control_wam results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/control_wam +Checking test 079 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 110.805202 - 0: The maximum resident set size (KB) = 637100 + 0: The total amount of wall time = 110.997743 + 0: The maximum resident set size (KB) = 643276 -Test 080 control_wam PASS +Test 079 control_wam PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/rrfs_conus13km_hrrr_warm_debug -Checking test 081 rrfs_conus13km_hrrr_warm_debug results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/rrfs_conus13km_hrrr_warm_debug +Checking test 080 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 713.942536 - 0: The maximum resident set size (KB) = 951136 + 0: The total amount of wall time = 724.887394 + 0: The maximum resident set size (KB) = 952756 -Test 081 rrfs_conus13km_hrrr_warm_debug PASS +Test 080 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rrfs_conus13km_radar_tten_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/rrfs_conus13km_radar_tten_warm_debug -Checking test 082 rrfs_conus13km_radar_tten_warm_debug results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/rrfs_conus13km_radar_tten_warm_debug +Checking test 081 rrfs_conus13km_radar_tten_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 729.470132 - 0: The maximum resident set size (KB) = 965540 + 0: The total amount of wall time = 716.813962 + 0: The maximum resident set size (KB) = 956980 -Test 082 rrfs_conus13km_radar_tten_warm_debug PASS +Test 081 rrfs_conus13km_radar_tten_warm_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/control_debug -Checking test 083 control_debug results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/control_debug +Checking test 082 control_debug 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.820540 - 0: The maximum resident set size (KB) = 791384 + 0: The total amount of wall time = 151.992383 + 0: The maximum resident set size (KB) = 791472 -Test 083 control_debug PASS +Test 082 control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/control_2threads_debug -Checking test 084 control_2threads_debug results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/control_2threads_debug +Checking test 083 control_2threads_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 217.655814 - 0: The maximum resident set size (KB) = 840860 + 0: The total amount of wall time = 214.679213 + 0: The maximum resident set size (KB) = 830072 -Test 084 control_2threads_debug PASS +Test 083 control_2threads_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_CubedSphereGrid_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/control_CubedSphereGrid_debug -Checking test 085 control_CubedSphereGrid_debug results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/control_CubedSphereGrid_debug +Checking test 084 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -3288,349 +3233,349 @@ Checking test 085 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 165.086507 - 0: The maximum resident set size (KB) = 791644 + 0: The total amount of wall time = 163.559271 + 0: The maximum resident set size (KB) = 797456 -Test 085 control_CubedSphereGrid_debug PASS +Test 084 control_CubedSphereGrid_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/control_wrtGauss_netcdf_parallel_debug -Checking test 086 control_wrtGauss_netcdf_parallel_debug results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/control_wrtGauss_netcdf_parallel_debug +Checking test 085 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK + Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 154.189783 - 0: The maximum resident set size (KB) = 796020 + 0: The total amount of wall time = 154.845599 + 0: The maximum resident set size (KB) = 792996 -Test 086 control_wrtGauss_netcdf_parallel_debug PASS +Test 085 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_stochy_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/control_stochy_debug -Checking test 087 control_stochy_debug results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/control_stochy_debug +Checking test 086 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 172.890199 - 0: The maximum resident set size (KB) = 804840 + 0: The total amount of wall time = 171.504098 + 0: The maximum resident set size (KB) = 801640 -Test 087 control_stochy_debug PASS +Test 086 control_stochy_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_lndp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/control_lndp_debug -Checking test 088 control_lndp_debug results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/control_lndp_debug +Checking test 087 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 156.653327 - 0: The maximum resident set size (KB) = 798980 + 0: The total amount of wall time = 152.112091 + 0: The maximum resident set size (KB) = 801212 -Test 088 control_lndp_debug PASS +Test 087 control_lndp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_csawmg_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/control_csawmg_debug -Checking test 089 control_csawmg_debug results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/control_csawmg_debug +Checking test 088 control_csawmg_debug 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.088847 - 0: The maximum resident set size (KB) = 845932 + 0: The total amount of wall time = 233.530808 + 0: The maximum resident set size (KB) = 843996 -Test 089 control_csawmg_debug PASS +Test 088 control_csawmg_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_csawmgt_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/control_csawmgt_debug -Checking test 090 control_csawmgt_debug results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/control_csawmgt_debug +Checking test 089 control_csawmgt_debug 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.676032 - 0: The maximum resident set size (KB) = 845704 + 0: The total amount of wall time = 232.691003 + 0: The maximum resident set size (KB) = 845520 -Test 090 control_csawmgt_debug PASS +Test 089 control_csawmgt_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/control_ras_debug -Checking test 091 control_ras_debug results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/control_ras_debug +Checking test 090 control_ras_debug 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.855706 - 0: The maximum resident set size (KB) = 810692 + 0: The total amount of wall time = 158.054319 + 0: The maximum resident set size (KB) = 808152 -Test 091 control_ras_debug PASS +Test 090 control_ras_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/control_diag_debug -Checking test 092 control_diag_debug results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/control_diag_debug +Checking test 091 control_diag_debug 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.103848 - 0: The maximum resident set size (KB) = 855552 + 0: The total amount of wall time = 158.458989 + 0: The maximum resident set size (KB) = 851564 -Test 092 control_diag_debug PASS +Test 091 control_diag_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/control_debug_p8 -Checking test 093 control_debug_p8 results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/control_debug_p8 +Checking test 092 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 167.101808 - 0: The maximum resident set size (KB) = 1620384 + 0: The total amount of wall time = 168.926650 + 0: The maximum resident set size (KB) = 1625276 -Test 093 control_debug_p8 PASS +Test 092 control_debug_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/regional_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/regional_debug -Checking test 094 regional_debug results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/regional_debug +Checking test 093 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 963.786165 - 0: The maximum resident set size (KB) = 882248 + 0: The total amount of wall time = 981.907902 + 0: The maximum resident set size (KB) = 884272 -Test 094 regional_debug PASS +Test 093 regional_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/rap_control_debug -Checking test 095 rap_control_debug results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/rap_control_debug +Checking test 094 rap_control_debug 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.003358 - 0: The maximum resident set size (KB) = 1171652 + 0: The total amount of wall time = 270.983489 + 0: The maximum resident set size (KB) = 1166412 -Test 095 rap_control_debug PASS +Test 094 rap_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/hrrr_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/hrrr_control_debug -Checking test 096 hrrr_control_debug results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/hrrr_control_debug +Checking test 095 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 301.753606 - 0: The maximum resident set size (KB) = 1166180 + 0: The total amount of wall time = 271.365980 + 0: The maximum resident set size (KB) = 1163364 -Test 096 hrrr_control_debug PASS +Test 095 hrrr_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/rap_unified_drag_suite_debug -Checking test 097 rap_unified_drag_suite_debug results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/rap_unified_drag_suite_debug +Checking test 096 rap_unified_drag_suite_debug 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.166705 - 0: The maximum resident set size (KB) = 1177036 + 0: The total amount of wall time = 272.639510 + 0: The maximum resident set size (KB) = 1171992 -Test 097 rap_unified_drag_suite_debug PASS +Test 096 rap_unified_drag_suite_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/rap_diag_debug -Checking test 098 rap_diag_debug results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/rap_diag_debug +Checking test 097 rap_diag_debug 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.920489 - 0: The maximum resident set size (KB) = 1259112 + 0: The total amount of wall time = 288.231648 + 0: The maximum resident set size (KB) = 1253888 -Test 098 rap_diag_debug PASS +Test 097 rap_diag_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/rap_cires_ugwp_debug -Checking test 099 rap_cires_ugwp_debug results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/rap_cires_ugwp_debug +Checking test 098 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 284.206423 - 0: The maximum resident set size (KB) = 1175372 + 0: The total amount of wall time = 280.289152 + 0: The maximum resident set size (KB) = 1167192 -Test 099 rap_cires_ugwp_debug PASS +Test 098 rap_cires_ugwp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/rap_unified_ugwp_debug -Checking test 100 rap_unified_ugwp_debug results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/rap_unified_ugwp_debug +Checking test 099 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 280.719719 - 0: The maximum resident set size (KB) = 1171456 + 0: The total amount of wall time = 283.880701 + 0: The maximum resident set size (KB) = 1175352 -Test 100 rap_unified_ugwp_debug PASS +Test 099 rap_unified_ugwp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_lndp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/rap_lndp_debug -Checking test 101 rap_lndp_debug results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/rap_lndp_debug +Checking test 100 rap_lndp_debug 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.160387 - 0: The maximum resident set size (KB) = 1179244 + 0: The total amount of wall time = 277.556998 + 0: The maximum resident set size (KB) = 1169992 -Test 101 rap_lndp_debug PASS +Test 100 rap_lndp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_flake_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/rap_flake_debug -Checking test 102 rap_flake_debug results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/rap_flake_debug +Checking test 101 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 272.794058 - 0: The maximum resident set size (KB) = 1167348 + 0: The total amount of wall time = 276.494491 + 0: The maximum resident set size (KB) = 1166024 -Test 102 rap_flake_debug PASS +Test 101 rap_flake_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_progcld_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/rap_progcld_thompson_debug -Checking test 103 rap_progcld_thompson_debug results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/rap_progcld_thompson_debug +Checking test 102 rap_progcld_thompson_debug 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.470755 - 0: The maximum resident set size (KB) = 1177684 + 0: The total amount of wall time = 278.038137 + 0: The maximum resident set size (KB) = 1173016 -Test 103 rap_progcld_thompson_debug PASS +Test 102 rap_progcld_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_noah_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/rap_noah_debug -Checking test 104 rap_noah_debug results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/rap_noah_debug +Checking test 103 rap_noah_debug 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.723404 - 0: The maximum resident set size (KB) = 1167980 + 0: The total amount of wall time = 275.175414 + 0: The maximum resident set size (KB) = 1171004 -Test 104 rap_noah_debug PASS +Test 103 rap_noah_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_rrtmgp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/rap_rrtmgp_debug -Checking test 105 rap_rrtmgp_debug results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/rap_rrtmgp_debug +Checking test 104 rap_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 456.231848 - 0: The maximum resident set size (KB) = 1302840 + 0: The total amount of wall time = 460.538811 + 0: The maximum resident set size (KB) = 1299836 -Test 105 rap_rrtmgp_debug PASS +Test 104 rap_rrtmgp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_sfcdiff_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/rap_sfcdiff_debug -Checking test 106 rap_sfcdiff_debug results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/rap_sfcdiff_debug +Checking test 105 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 272.385994 - 0: The maximum resident set size (KB) = 1171552 + 0: The total amount of wall time = 278.227641 + 0: The maximum resident set size (KB) = 1175804 -Test 106 rap_sfcdiff_debug PASS +Test 105 rap_sfcdiff_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/rap_noah_sfcdiff_cires_ugwp_debug -Checking test 107 rap_noah_sfcdiff_cires_ugwp_debug results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/rap_noah_sfcdiff_cires_ugwp_debug +Checking test 106 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 453.100327 - 0: The maximum resident set size (KB) = 1166612 + 0: The total amount of wall time = 440.502632 + 0: The maximum resident set size (KB) = 1173320 -Test 107 rap_noah_sfcdiff_cires_ugwp_debug PASS +Test 106 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/rrfs_v1beta_debug -Checking test 108 rrfs_v1beta_debug results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/rrfs_v1beta_debug +Checking test 107 rrfs_v1beta_debug 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.605534 - 0: The maximum resident set size (KB) = 1165880 + 0: The total amount of wall time = 272.175276 + 0: The maximum resident set size (KB) = 1170216 -Test 108 rrfs_v1beta_debug PASS +Test 107 rrfs_v1beta_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_wam_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/control_wam_debug -Checking test 109 control_wam_debug results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/control_wam_debug +Checking test 108 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 271.705069 - 0: The maximum resident set size (KB) = 521752 + 0: The total amount of wall time = 278.831436 + 0: The maximum resident set size (KB) = 524220 -Test 109 control_wam_debug PASS +Test 108 control_wam_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/regional_spp_sppt_shum_skeb_dyn32_phy32 -Checking test 110 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/regional_spp_sppt_shum_skeb_dyn32_phy32 +Checking test 109 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -3640,15 +3585,15 @@ Checking test 110 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 265.731575 - 0: The maximum resident set size (KB) = 1083604 + 0: The total amount of wall time = 267.519608 + 0: The maximum resident set size (KB) = 1079128 -Test 110 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS +Test 109 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/rap_control_dyn32_phy32 -Checking test 111 rap_control_dyn32_phy32 results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/rap_control_dyn32_phy32 +Checking test 110 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3694,15 +3639,15 @@ Checking test 111 rap_control_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 354.425169 - 0: The maximum resident set size (KB) = 1003112 + 0: The total amount of wall time = 353.883176 + 0: The maximum resident set size (KB) = 1004808 -Test 111 rap_control_dyn32_phy32 PASS +Test 110 rap_control_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/hrrr_control_dyn32_phy32 -Checking test 112 hrrr_control_dyn32_phy32 results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/hrrr_control_dyn32_phy32 +Checking test 111 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3748,15 +3693,15 @@ Checking test 112 hrrr_control_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 183.740338 - 0: The maximum resident set size (KB) = 955896 + 0: The total amount of wall time = 183.666992 + 0: The maximum resident set size (KB) = 954428 -Test 112 hrrr_control_dyn32_phy32 PASS +Test 111 hrrr_control_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/rap_2threads_dyn32_phy32 -Checking test 113 rap_2threads_dyn32_phy32 results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/rap_2threads_dyn32_phy32 +Checking test 112 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3802,15 +3747,15 @@ Checking test 113 rap_2threads_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 428.074157 - 0: The maximum resident set size (KB) = 930352 + 0: The total amount of wall time = 432.001270 + 0: The maximum resident set size (KB) = 926552 -Test 113 rap_2threads_dyn32_phy32 PASS +Test 112 rap_2threads_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/hrrr_control_2threads_dyn32_phy32 -Checking test 114 hrrr_control_2threads_dyn32_phy32 results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/hrrr_control_2threads_dyn32_phy32 +Checking test 113 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3856,15 +3801,15 @@ Checking test 114 hrrr_control_2threads_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 219.902255 - 0: The maximum resident set size (KB) = 922736 + 0: The total amount of wall time = 219.700283 + 0: The maximum resident set size (KB) = 918744 -Test 114 hrrr_control_2threads_dyn32_phy32 PASS +Test 113 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/hrrr_control_decomp_dyn32_phy32 -Checking test 115 hrrr_control_decomp_dyn32_phy32 results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/hrrr_control_decomp_dyn32_phy32 +Checking test 114 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3910,15 +3855,15 @@ Checking test 115 hrrr_control_decomp_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 195.486535 - 0: The maximum resident set size (KB) = 899888 + 0: The total amount of wall time = 193.780974 + 0: The maximum resident set size (KB) = 899416 -Test 115 hrrr_control_decomp_dyn32_phy32 PASS +Test 114 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/rap_restart_dyn32_phy32 -Checking test 116 rap_restart_dyn32_phy32 results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/rap_restart_dyn32_phy32 +Checking test 115 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3956,15 +3901,15 @@ Checking test 116 rap_restart_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 266.119499 - 0: The maximum resident set size (KB) = 940292 + 0: The total amount of wall time = 264.343895 + 0: The maximum resident set size (KB) = 950952 -Test 116 rap_restart_dyn32_phy32 PASS +Test 115 rap_restart_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/hrrr_control_restart_dyn32_phy32 -Checking test 117 hrrr_control_restart_dyn32_phy32 results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/hrrr_control_restart_dyn32_phy32 +Checking test 116 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -4002,15 +3947,15 @@ Checking test 117 hrrr_control_restart_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 94.331730 - 0: The maximum resident set size (KB) = 860128 + 0: The total amount of wall time = 94.185531 + 0: The maximum resident set size (KB) = 849512 -Test 117 hrrr_control_restart_dyn32_phy32 PASS +Test 116 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_control_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/rap_control_dyn64_phy32 -Checking test 118 rap_control_dyn64_phy32 results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/rap_control_dyn64_phy32 +Checking test 117 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4056,82 +4001,82 @@ Checking test 118 rap_control_dyn64_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 231.047520 - 0: The maximum resident set size (KB) = 966808 + 0: The total amount of wall time = 230.750347 + 0: The maximum resident set size (KB) = 962676 -Test 118 rap_control_dyn64_phy32 PASS +Test 117 rap_control_dyn64_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/rap_control_debug_dyn32_phy32 -Checking test 119 rap_control_debug_dyn32_phy32 results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/rap_control_debug_dyn32_phy32 +Checking test 118 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 267.445187 - 0: The maximum resident set size (KB) = 1059684 + 0: The total amount of wall time = 267.169848 + 0: The maximum resident set size (KB) = 1061764 -Test 119 rap_control_debug_dyn32_phy32 PASS +Test 118 rap_control_debug_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/hrrr_control_debug_dyn32_phy32 -Checking test 120 hrrr_control_debug_dyn32_phy32 results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/hrrr_control_debug_dyn32_phy32 +Checking test 119 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 267.106568 - 0: The maximum resident set size (KB) = 1055068 + 0: The total amount of wall time = 262.262980 + 0: The maximum resident set size (KB) = 1052280 -Test 120 hrrr_control_debug_dyn32_phy32 PASS +Test 119 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_control_debug_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/rap_control_dyn64_phy32_debug -Checking test 121 rap_control_dyn64_phy32_debug results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/rap_control_dyn64_phy32_debug +Checking test 120 rap_control_dyn64_phy32_debug 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.031133 - 0: The maximum resident set size (KB) = 1097332 + 0: The total amount of wall time = 276.066577 + 0: The maximum resident set size (KB) = 1095012 -Test 121 rap_control_dyn64_phy32_debug PASS +Test 120 rap_control_dyn64_phy32_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/hafs_regional_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/hafs_regional_atm -Checking test 122 hafs_regional_atm results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/hafs_regional_atm +Checking test 121 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 306.162479 - 0: The maximum resident set size (KB) = 975732 + 0: The total amount of wall time = 303.126632 + 0: The maximum resident set size (KB) = 973340 -Test 122 hafs_regional_atm PASS +Test 121 hafs_regional_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/hafs_regional_atm_thompson_gfdlsf -Checking test 123 hafs_regional_atm_thompson_gfdlsf results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/hafs_regional_atm_thompson_gfdlsf +Checking test 122 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 388.341601 - 0: The maximum resident set size (KB) = 1337368 + 0: The total amount of wall time = 380.363434 + 0: The maximum resident set size (KB) = 1352604 -Test 123 hafs_regional_atm_thompson_gfdlsf PASS +Test 122 hafs_regional_atm_thompson_gfdlsf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/hafs_regional_atm_ocn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/hafs_regional_atm_ocn -Checking test 124 hafs_regional_atm_ocn results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/hafs_regional_atm_ocn +Checking test 123 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -4139,15 +4084,15 @@ Checking test 124 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 383.393317 - 0: The maximum resident set size (KB) = 1191948 + 0: The total amount of wall time = 384.558516 + 0: The maximum resident set size (KB) = 1195636 -Test 124 hafs_regional_atm_ocn PASS +Test 123 hafs_regional_atm_ocn PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/hafs_regional_atm_wav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/hafs_regional_atm_wav -Checking test 125 hafs_regional_atm_wav results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/hafs_regional_atm_wav +Checking test 124 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing out_grd.ww3 .........OK @@ -4155,15 +4100,15 @@ Checking test 125 hafs_regional_atm_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 707.058735 - 0: The maximum resident set size (KB) = 1219644 + 0: The total amount of wall time = 717.808634 + 0: The maximum resident set size (KB) = 1224884 -Test 125 hafs_regional_atm_wav PASS +Test 124 hafs_regional_atm_wav PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/hafs_regional_atm_ocn_wav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/hafs_regional_atm_ocn_wav -Checking test 126 hafs_regional_atm_ocn_wav results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/hafs_regional_atm_ocn_wav +Checking test 125 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -4173,29 +4118,29 @@ Checking test 126 hafs_regional_atm_ocn_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 814.279073 - 0: The maximum resident set size (KB) = 1235500 + 0: The total amount of wall time = 817.363956 + 0: The maximum resident set size (KB) = 1237720 -Test 126 hafs_regional_atm_ocn_wav PASS +Test 125 hafs_regional_atm_ocn_wav PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/hafs_regional_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/hafs_regional_1nest_atm -Checking test 127 hafs_regional_1nest_atm results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/hafs_regional_1nest_atm +Checking test 126 hafs_regional_1nest_atm 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 = 465.892253 - 0: The maximum resident set size (KB) = 530544 + 0: The total amount of wall time = 462.419971 + 0: The maximum resident set size (KB) = 529728 -Test 127 hafs_regional_1nest_atm PASS +Test 126 hafs_regional_1nest_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/hafs_regional_telescopic_2nests_atm -Checking test 128 hafs_regional_telescopic_2nests_atm results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/hafs_regional_telescopic_2nests_atm +Checking test 127 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4203,29 +4148,29 @@ Checking test 128 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 514.698988 - 0: The maximum resident set size (KB) = 587984 + 0: The total amount of wall time = 515.887857 + 0: The maximum resident set size (KB) = 587460 -Test 128 hafs_regional_telescopic_2nests_atm PASS +Test 127 hafs_regional_telescopic_2nests_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/hafs_global_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/hafs_global_1nest_atm -Checking test 129 hafs_global_1nest_atm results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/hafs_global_1nest_atm +Checking test 128 hafs_global_1nest_atm 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 = 214.798526 - 0: The maximum resident set size (KB) = 383184 + 0: The total amount of wall time = 212.184993 + 0: The maximum resident set size (KB) = 378960 -Test 129 hafs_global_1nest_atm PASS +Test 128 hafs_global_1nest_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/hafs_global_multiple_4nests_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/hafs_global_multiple_4nests_atm -Checking test 130 hafs_global_multiple_4nests_atm results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/hafs_global_multiple_4nests_atm +Checking test 129 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4242,15 +4187,15 @@ Checking test 130 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK - 0: The total amount of wall time = 589.700576 - 0: The maximum resident set size (KB) = 415860 + 0: The total amount of wall time = 586.814556 + 0: The maximum resident set size (KB) = 410716 -Test 130 hafs_global_multiple_4nests_atm PASS +Test 129 hafs_global_multiple_4nests_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/hafs_regional_specified_moving_1nest_atm -Checking test 131 hafs_regional_specified_moving_1nest_atm results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/hafs_regional_specified_moving_1nest_atm +Checking test 130 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4258,29 +4203,29 @@ Checking test 131 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 279.020084 - 0: The maximum resident set size (KB) = 548520 + 0: The total amount of wall time = 277.657321 + 0: The maximum resident set size (KB) = 536532 -Test 131 hafs_regional_specified_moving_1nest_atm PASS +Test 130 hafs_regional_specified_moving_1nest_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/hafs_regional_storm_following_1nest_atm -Checking test 132 hafs_regional_storm_following_1nest_atm results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/hafs_regional_storm_following_1nest_atm +Checking test 131 hafs_regional_storm_following_1nest_atm 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 = 269.443306 - 0: The maximum resident set size (KB) = 539632 + 0: The total amount of wall time = 265.984533 + 0: The maximum resident set size (KB) = 544072 -Test 132 hafs_regional_storm_following_1nest_atm PASS +Test 131 hafs_regional_storm_following_1nest_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/hafs_regional_storm_following_1nest_atm_ocn -Checking test 133 hafs_regional_storm_following_1nest_atm_ocn results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/hafs_regional_storm_following_1nest_atm_ocn +Checking test 132 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4288,15 +4233,15 @@ Checking test 133 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 276.667251 - 0: The maximum resident set size (KB) = 614972 + 0: The total amount of wall time = 274.575427 + 0: The maximum resident set size (KB) = 609256 -Test 133 hafs_regional_storm_following_1nest_atm_ocn PASS +Test 132 hafs_regional_storm_following_1nest_atm_ocn PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/hafs_regional_storm_following_1nest_atm_ocn_wav -Checking test 134 hafs_regional_storm_following_1nest_atm_ocn_wav results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/hafs_regional_storm_following_1nest_atm_ocn_wav +Checking test 133 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4306,176 +4251,176 @@ Checking test 134 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 622.738718 - 0: The maximum resident set size (KB) = 595520 + 0: The total amount of wall time = 632.604376 + 0: The maximum resident set size (KB) = 597376 -Test 134 hafs_regional_storm_following_1nest_atm_ocn_wav PASS +Test 133 hafs_regional_storm_following_1nest_atm_ocn_wav PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/hafs_global_storm_following_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/hafs_global_storm_following_1nest_atm -Checking test 135 hafs_global_storm_following_1nest_atm results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/hafs_global_storm_following_1nest_atm +Checking test 134 hafs_global_storm_following_1nest_atm 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.158559 - 0: The maximum resident set size (KB) = 395284 + 0: The total amount of wall time = 80.973896 + 0: The maximum resident set size (KB) = 392380 -Test 135 hafs_global_storm_following_1nest_atm PASS +Test 134 hafs_global_storm_following_1nest_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/hafs_regional_docn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/hafs_regional_docn -Checking test 136 hafs_regional_docn results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/hafs_regional_docn +Checking test 135 hafs_regional_docn 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 = 380.346202 - 0: The maximum resident set size (KB) = 1209892 + 0: The total amount of wall time = 379.443762 + 0: The maximum resident set size (KB) = 1213960 -Test 136 hafs_regional_docn PASS +Test 135 hafs_regional_docn PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/hafs_regional_docn_oisst -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/hafs_regional_docn_oisst -Checking test 137 hafs_regional_docn_oisst results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/hafs_regional_docn_oisst +Checking test 136 hafs_regional_docn_oisst 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 = 381.061961 - 0: The maximum resident set size (KB) = 1193980 + 0: The total amount of wall time = 381.600690 + 0: The maximum resident set size (KB) = 1190448 -Test 137 hafs_regional_docn_oisst PASS +Test 136 hafs_regional_docn_oisst PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/hafs_regional_datm_cdeps -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/hafs_regional_datm_cdeps -Checking test 138 hafs_regional_datm_cdeps results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/hafs_regional_datm_cdeps +Checking test 137 hafs_regional_datm_cdeps 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 = 938.788717 - 0: The maximum resident set size (KB) = 1040020 + 0: The total amount of wall time = 936.375661 + 0: The maximum resident set size (KB) = 1047040 -Test 138 hafs_regional_datm_cdeps PASS +Test 137 hafs_regional_datm_cdeps PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/datm_cdeps_control_cfsr -Checking test 139 datm_cdeps_control_cfsr results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/datm_cdeps_control_cfsr +Checking test 138 datm_cdeps_control_cfsr results .... Comparing RESTART/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 = 157.666188 - 0: The maximum resident set size (KB) = 1067536 + 0: The total amount of wall time = 157.894125 + 0: The maximum resident set size (KB) = 1082008 -Test 139 datm_cdeps_control_cfsr PASS +Test 138 datm_cdeps_control_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/datm_cdeps_restart_cfsr -Checking test 140 datm_cdeps_restart_cfsr results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/datm_cdeps_restart_cfsr +Checking test 139 datm_cdeps_restart_cfsr results .... Comparing RESTART/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 = 92.932877 - 0: The maximum resident set size (KB) = 1024276 + 0: The total amount of wall time = 96.309931 + 0: The maximum resident set size (KB) = 1018128 -Test 140 datm_cdeps_restart_cfsr PASS +Test 139 datm_cdeps_restart_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/datm_cdeps_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/datm_cdeps_control_gefs -Checking test 141 datm_cdeps_control_gefs results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/datm_cdeps_control_gefs +Checking test 140 datm_cdeps_control_gefs results .... Comparing RESTART/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 = 156.852946 - 0: The maximum resident set size (KB) = 969484 + 0: The total amount of wall time = 152.312402 + 0: The maximum resident set size (KB) = 967652 -Test 141 datm_cdeps_control_gefs PASS +Test 140 datm_cdeps_control_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/datm_cdeps_iau_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/datm_cdeps_iau_gefs -Checking test 142 datm_cdeps_iau_gefs results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/datm_cdeps_iau_gefs +Checking test 141 datm_cdeps_iau_gefs results .... Comparing RESTART/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.380082 - 0: The maximum resident set size (KB) = 965120 + 0: The total amount of wall time = 154.270988 + 0: The maximum resident set size (KB) = 959344 -Test 142 datm_cdeps_iau_gefs PASS +Test 141 datm_cdeps_iau_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/datm_cdeps_stochy_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/datm_cdeps_stochy_gefs -Checking test 143 datm_cdeps_stochy_gefs results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/datm_cdeps_stochy_gefs +Checking test 142 datm_cdeps_stochy_gefs results .... Comparing RESTART/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 = 155.224821 - 0: The maximum resident set size (KB) = 965908 + 0: The total amount of wall time = 151.818551 + 0: The maximum resident set size (KB) = 962964 -Test 143 datm_cdeps_stochy_gefs PASS +Test 142 datm_cdeps_stochy_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/datm_cdeps_ciceC_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/datm_cdeps_ciceC_cfsr -Checking test 144 datm_cdeps_ciceC_cfsr results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/datm_cdeps_ciceC_cfsr +Checking test 143 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/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 = 159.997642 - 0: The maximum resident set size (KB) = 1060868 + 0: The total amount of wall time = 154.988029 + 0: The maximum resident set size (KB) = 1055564 -Test 144 datm_cdeps_ciceC_cfsr PASS +Test 143 datm_cdeps_ciceC_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/datm_cdeps_bulk_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/datm_cdeps_bulk_cfsr -Checking test 145 datm_cdeps_bulk_cfsr results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/datm_cdeps_bulk_cfsr +Checking test 144 datm_cdeps_bulk_cfsr results .... Comparing RESTART/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 = 156.219383 - 0: The maximum resident set size (KB) = 1063260 + 0: The total amount of wall time = 157.260990 + 0: The maximum resident set size (KB) = 1073188 -Test 145 datm_cdeps_bulk_cfsr PASS +Test 144 datm_cdeps_bulk_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/datm_cdeps_bulk_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/datm_cdeps_bulk_gefs -Checking test 146 datm_cdeps_bulk_gefs results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/datm_cdeps_bulk_gefs +Checking test 145 datm_cdeps_bulk_gefs results .... Comparing RESTART/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 = 149.211555 - 0: The maximum resident set size (KB) = 964296 + 0: The total amount of wall time = 152.189982 + 0: The maximum resident set size (KB) = 957628 -Test 146 datm_cdeps_bulk_gefs PASS +Test 145 datm_cdeps_bulk_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/datm_cdeps_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/datm_cdeps_mx025_cfsr -Checking test 147 datm_cdeps_mx025_cfsr results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/datm_cdeps_mx025_cfsr +Checking test 146 datm_cdeps_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK @@ -4483,15 +4428,15 @@ Checking test 147 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 433.032060 - 0: The maximum resident set size (KB) = 882968 + 0: The total amount of wall time = 427.728267 + 0: The maximum resident set size (KB) = 875100 -Test 147 datm_cdeps_mx025_cfsr PASS +Test 146 datm_cdeps_mx025_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/datm_cdeps_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/datm_cdeps_mx025_gefs -Checking test 148 datm_cdeps_mx025_gefs results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/datm_cdeps_mx025_gefs +Checking test 147 datm_cdeps_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK @@ -4499,65 +4444,65 @@ Checking test 148 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 430.306066 - 0: The maximum resident set size (KB) = 927296 + 0: The total amount of wall time = 430.957474 + 0: The maximum resident set size (KB) = 931636 -Test 148 datm_cdeps_mx025_gefs PASS +Test 147 datm_cdeps_mx025_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/datm_cdeps_multiple_files_cfsr -Checking test 149 datm_cdeps_multiple_files_cfsr results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/datm_cdeps_multiple_files_cfsr +Checking test 148 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 153.709870 - 0: The maximum resident set size (KB) = 1076412 + 0: The total amount of wall time = 160.370729 + 0: The maximum resident set size (KB) = 1058036 -Test 149 datm_cdeps_multiple_files_cfsr PASS +Test 148 datm_cdeps_multiple_files_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/datm_cdeps_3072x1536_cfsr -Checking test 150 datm_cdeps_3072x1536_cfsr results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/datm_cdeps_3072x1536_cfsr +Checking test 149 datm_cdeps_3072x1536_cfsr results .... Comparing RESTART/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 = 211.685273 - 0: The maximum resident set size (KB) = 2304536 + 0: The total amount of wall time = 210.652215 + 0: The maximum resident set size (KB) = 2301044 -Test 150 datm_cdeps_3072x1536_cfsr PASS +Test 149 datm_cdeps_3072x1536_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/datm_cdeps_gfs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/datm_cdeps_gfs -Checking test 151 datm_cdeps_gfs results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/datm_cdeps_gfs +Checking test 150 datm_cdeps_gfs results .... Comparing RESTART/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 = 211.426909 - 0: The maximum resident set size (KB) = 2363676 + 0: The total amount of wall time = 210.115975 + 0: The maximum resident set size (KB) = 2295956 -Test 151 datm_cdeps_gfs PASS +Test 150 datm_cdeps_gfs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/datm_cdeps_debug_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/datm_cdeps_debug_cfsr -Checking test 152 datm_cdeps_debug_cfsr results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/datm_cdeps_debug_cfsr +Checking test 151 datm_cdeps_debug_cfsr results .... Comparing RESTART/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 = 439.124448 - 0: The maximum resident set size (KB) = 1000600 + 0: The total amount of wall time = 447.558015 + 0: The maximum resident set size (KB) = 999296 -Test 152 datm_cdeps_debug_cfsr PASS +Test 151 datm_cdeps_debug_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/datm_cdeps_lnd_gswp3 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/datm_cdeps_lnd_gswp3 -Checking test 153 datm_cdeps_lnd_gswp3 results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/datm_cdeps_lnd_gswp3 +Checking test 152 datm_cdeps_lnd_gswp3 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 @@ -4565,15 +4510,15 @@ Checking test 153 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 7.140318 - 0: The maximum resident set size (KB) = 260944 + 0: The total amount of wall time = 6.237165 + 0: The maximum resident set size (KB) = 258968 -Test 153 datm_cdeps_lnd_gswp3 PASS +Test 152 datm_cdeps_lnd_gswp3 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/datm_cdeps_lnd_gswp3 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/datm_cdeps_lnd_gswp3_rst -Checking test 154 datm_cdeps_lnd_gswp3_rst results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/datm_cdeps_lnd_gswp3_rst +Checking test 153 datm_cdeps_lnd_gswp3_rst 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 @@ -4581,15 +4526,15 @@ Checking test 154 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 12.006700 - 0: The maximum resident set size (KB) = 263744 + 0: The total amount of wall time = 12.299540 + 0: The maximum resident set size (KB) = 258628 -Test 154 datm_cdeps_lnd_gswp3_rst PASS +Test 153 datm_cdeps_lnd_gswp3_rst PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_p8_atmlnd_sbs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/control_p8_atmlnd_sbs -Checking test 155 control_p8_atmlnd_sbs results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/control_p8_atmlnd_sbs +Checking test 154 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -4673,15 +4618,15 @@ Checking test 155 control_p8_atmlnd_sbs results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 198.810615 - 0: The maximum resident set size (KB) = 1614024 + 0: The total amount of wall time = 199.033345 + 0: The maximum resident set size (KB) = 1617460 -Test 155 control_p8_atmlnd_sbs PASS +Test 154 control_p8_atmlnd_sbs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_atmwav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/control_atmwav -Checking test 156 control_atmwav results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/control_atmwav +Checking test 155 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -4724,15 +4669,15 @@ Checking test 156 control_atmwav results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 84.404475 - 0: The maximum resident set size (KB) = 658688 + 0: The total amount of wall time = 85.023784 + 0: The maximum resident set size (KB) = 655580 -Test 156 control_atmwav PASS +Test 155 control_atmwav PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/atmaero_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/atmaero_control_p8 -Checking test 157 atmaero_control_p8 results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/atmaero_control_p8 +Checking test 156 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4775,15 +4720,15 @@ Checking test 157 atmaero_control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 223.817529 - 0: The maximum resident set size (KB) = 2969140 + 0: The total amount of wall time = 224.037797 + 0: The maximum resident set size (KB) = 2969476 -Test 157 atmaero_control_p8 PASS +Test 156 atmaero_control_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/atmaero_control_p8_rad -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/atmaero_control_p8_rad -Checking test 158 atmaero_control_p8_rad results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/atmaero_control_p8_rad +Checking test 157 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4826,15 +4771,15 @@ Checking test 158 atmaero_control_p8_rad results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 277.106531 - 0: The maximum resident set size (KB) = 3043800 + 0: The total amount of wall time = 277.487748 + 0: The maximum resident set size (KB) = 3041976 -Test 158 atmaero_control_p8_rad PASS +Test 157 atmaero_control_p8_rad PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/atmaero_control_p8_rad_micro -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/atmaero_control_p8_rad_micro -Checking test 159 atmaero_control_p8_rad_micro results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/atmaero_control_p8_rad_micro +Checking test 158 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4877,15 +4822,15 @@ Checking test 159 atmaero_control_p8_rad_micro results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 281.255802 - 0: The maximum resident set size (KB) = 3055392 + 0: The total amount of wall time = 282.835279 + 0: The maximum resident set size (KB) = 3059440 -Test 159 atmaero_control_p8_rad_micro PASS +Test 158 atmaero_control_p8_rad_micro PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/regional_atmaq -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31789/regional_atmaq -Checking test 160 regional_atmaq results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16620/regional_atmaq +Checking test 159 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing sfcf006.nc .........OK @@ -4900,12 +4845,12 @@ Checking test 160 regional_atmaq results .... Comparing RESTART/phy_data.nc .........OK Comparing RESTART/sfc_data.nc .........OK - 0: The total amount of wall time = 665.358998 - 0: The maximum resident set size (KB) = 1083444 + 0: The total amount of wall time = 660.744238 + 0: The maximum resident set size (KB) = 1079920 -Test 160 regional_atmaq PASS +Test 159 regional_atmaq PASS REGRESSION TEST WAS SUCCESSFUL -Fri Nov 11 02:16:51 UTC 2022 -Elapsed time: 01h:29m:02s. Have a nice day! +Wed Nov 16 00:40:06 UTC 2022 +Elapsed time: 02h:37m:08s. Have a nice day! diff --git a/tests/RegressionTests_jet.intel.log b/tests/RegressionTests_jet.intel.log index b7122ade44..8a052f3fd0 100644 --- a/tests/RegressionTests_jet.intel.log +++ b/tests/RegressionTests_jet.intel.log @@ -1,34 +1,34 @@ -Fri Nov 11 05:18:27 GMT 2022 +Tue Nov 15 23:46:46 GMT 2022 Start Regression test -Compile 001 elapsed time 1979 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 002 elapsed time 1694 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 003 elapsed time 305 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 004 elapsed time 280 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 1382 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 006 elapsed time 1386 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 001 elapsed time 1949 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 002 elapsed time 1654 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 003 elapsed time 325 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 004 elapsed time 286 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 1367 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 006 elapsed time 1391 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON Compile 007 elapsed time 1390 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 008 elapsed time 1438 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 009 elapsed time 1343 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 010 elapsed time 1253 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 011 elapsed time 873 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 012 elapsed time 246 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 013 elapsed time 1273 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 014 elapsed time 1298 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 015 elapsed time 240 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 205 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 017 elapsed time 1612 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 018 elapsed time 1688 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 019 elapsed time 387 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 020 elapsed time 167 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 021 elapsed time 88 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 022 elapsed time 1435 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 023 elapsed time 1596 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 024 elapsed time 1267 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 025 elapsed time 1392 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 008 elapsed time 1379 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 009 elapsed time 1345 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 010 elapsed time 1177 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 011 elapsed time 824 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 012 elapsed time 225 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 013 elapsed time 1221 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 014 elapsed time 1272 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 015 elapsed time 238 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 238 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 017 elapsed time 1659 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 018 elapsed time 1588 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 019 elapsed time 289 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 020 elapsed time 160 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 021 elapsed time 101 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 022 elapsed time 1392 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 023 elapsed time 1606 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 024 elapsed time 1259 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 025 elapsed time 1276 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/cpld_control_p8 Checking test 001 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -93,14 +93,14 @@ Checking test 001 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 466.045238 - 0: The maximum resident set size (KB) = 1770232 + 0: The total amount of wall time = 452.513141 + 0: The maximum resident set size (KB) = 1798772 Test 001 cpld_control_p8 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/cpld_restart_p8 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/cpld_restart_p8 Checking test 002 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -153,14 +153,14 @@ Checking test 002 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 333.493656 - 0: The maximum resident set size (KB) = 1488820 + 0: The total amount of wall time = 249.300903 + 0: The maximum resident set size (KB) = 1504872 Test 002 cpld_restart_p8 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/cpld_2threads_p8 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/cpld_2threads_p8 Checking test 003 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -213,14 +213,14 @@ Checking test 003 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 503.359696 - 0: The maximum resident set size (KB) = 1967048 + 0: The total amount of wall time = 478.629620 + 0: The maximum resident set size (KB) = 1982764 Test 003 cpld_2threads_p8 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/cpld_esmfthreads_p8 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/cpld_esmfthreads_p8 Checking test 004 cpld_esmfthreads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -273,14 +273,14 @@ Checking test 004 cpld_esmfthreads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 516.465901 - 0: The maximum resident set size (KB) = 1994256 + 0: The total amount of wall time = 486.074727 + 0: The maximum resident set size (KB) = 1989800 Test 004 cpld_esmfthreads_p8 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/cpld_decomp_p8 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/cpld_decomp_p8 Checking test 005 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -333,14 +333,14 @@ Checking test 005 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 490.844506 - 0: The maximum resident set size (KB) = 1777796 + 0: The total amount of wall time = 456.948055 + 0: The maximum resident set size (KB) = 1767372 Test 005 cpld_decomp_p8 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/cpld_mpi_p8 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/cpld_mpi_p8 Checking test 006 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -393,14 +393,14 @@ Checking test 006 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 394.019452 - 0: The maximum resident set size (KB) = 1747780 + 0: The total amount of wall time = 395.627671 + 0: The maximum resident set size (KB) = 1728076 Test 006 cpld_mpi_p8 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/cpld_control_ciceC_p8 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/cpld_control_ciceC_p8 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/cpld_control_ciceC_p8 Checking test 007 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -465,14 +465,14 @@ Checking test 007 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 490.029209 - 0: The maximum resident set size (KB) = 1771736 + 0: The total amount of wall time = 462.998400 + 0: The maximum resident set size (KB) = 1796012 Test 007 cpld_control_ciceC_p8 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/cpld_control_noaero_p8 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/cpld_control_noaero_p8 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/cpld_control_noaero_p8 Checking test 008 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -536,14 +536,14 @@ Checking test 008 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 333.446224 - 0: The maximum resident set size (KB) = 1641480 + 0: The total amount of wall time = 320.984970 + 0: The maximum resident set size (KB) = 1635860 Test 008 cpld_control_noaero_p8 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/cpld_control_c96_noaero_p8 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/cpld_control_nowave_noaero_p8 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/cpld_control_nowave_noaero_p8 Checking test 009 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -605,14 +605,14 @@ Checking test 009 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 366.353941 - 0: The maximum resident set size (KB) = 1667912 + 0: The total amount of wall time = 395.436043 + 0: The maximum resident set size (KB) = 1678860 Test 009 cpld_control_nowave_noaero_p8 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/cpld_debug_p8 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/cpld_debug_p8 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/cpld_debug_p8 Checking test 010 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -665,14 +665,14 @@ Checking test 010 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 874.118607 - 0: The maximum resident set size (KB) = 1821504 + 0: The total amount of wall time = 863.784323 + 0: The maximum resident set size (KB) = 1844840 Test 010 cpld_debug_p8 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/cpld_debug_noaero_p8 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/cpld_debug_noaero_p8 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/cpld_debug_noaero_p8 Checking test 011 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -724,14 +724,14 @@ Checking test 011 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 533.893949 - 0: The maximum resident set size (KB) = 1643492 + 0: The total amount of wall time = 569.077535 + 0: The maximum resident set size (KB) = 1646848 Test 011 cpld_debug_noaero_p8 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/cpld_control_noaero_p8_agrid -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/cpld_control_noaero_p8_agrid +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/cpld_control_noaero_p8_agrid Checking test 012 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -793,14 +793,14 @@ Checking test 012 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 391.826251 - 0: The maximum resident set size (KB) = 1680360 + 0: The total amount of wall time = 374.785991 + 0: The maximum resident set size (KB) = 1683816 Test 012 cpld_control_noaero_p8_agrid PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/cpld_control_c48 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/cpld_control_c48 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/cpld_control_c48 Checking test 013 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -850,14 +850,14 @@ Checking test 013 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 790.440556 - 0: The maximum resident set size (KB) = 2768328 + 0: The total amount of wall time = 794.433808 + 0: The maximum resident set size (KB) = 2766284 Test 013 cpld_control_c48 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/cpld_warmstart_c48 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/cpld_warmstart_c48 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/cpld_warmstart_c48 Checking test 014 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -907,14 +907,14 @@ Checking test 014 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 225.765297 - 0: The maximum resident set size (KB) = 2759124 + 0: The total amount of wall time = 220.572439 + 0: The maximum resident set size (KB) = 2773972 Test 014 cpld_warmstart_c48 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/cpld_warmstart_c48 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/cpld_restart_c48 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/cpld_restart_c48 Checking test 015 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -964,14 +964,14 @@ Checking test 015 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 117.327049 - 0: The maximum resident set size (KB) = 2199284 + 0: The total amount of wall time = 110.082677 + 0: The maximum resident set size (KB) = 2208600 Test 015 cpld_restart_c48 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/control +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/control Checking test 016 control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1018,14 +1018,14 @@ Checking test 016 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 200.852590 - 0: The maximum resident set size (KB) = 570024 + 0: The total amount of wall time = 185.680397 + 0: The maximum resident set size (KB) = 572276 Test 016 control PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/control_decomp +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/control_decomp Checking test 017 control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1068,14 +1068,14 @@ Checking test 017 control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 197.722129 - 0: The maximum resident set size (KB) = 562124 + 0: The total amount of wall time = 189.410224 + 0: The maximum resident set size (KB) = 564840 Test 017 control_decomp PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/control_2dwrtdecomp +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/control_2dwrtdecomp Checking test 018 control_2dwrtdecomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1086,14 +1086,14 @@ Checking test 018 control_2dwrtdecomp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 190.509353 - 0: The maximum resident set size (KB) = 572708 + 0: The total amount of wall time = 180.622514 + 0: The maximum resident set size (KB) = 570324 Test 018 control_2dwrtdecomp PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/control_2threads +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/control_2threads Checking test 019 control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1136,14 +1136,14 @@ Checking test 019 control_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 180.437132 - 0: The maximum resident set size (KB) = 620352 + 0: The total amount of wall time = 178.931212 + 0: The maximum resident set size (KB) = 622196 Test 019 control_2threads PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/control_restart +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/control_restart Checking test 020 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1182,14 +1182,14 @@ Checking test 020 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 97.073291 - 0: The maximum resident set size (KB) = 371664 + 0: The total amount of wall time = 100.310748 + 0: The maximum resident set size (KB) = 368256 Test 020 control_restart PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/control_fhzero +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/control_fhzero Checking test 021 control_fhzero results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -1232,14 +1232,14 @@ Checking test 021 control_fhzero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 184.683686 - 0: The maximum resident set size (KB) = 570984 + 0: The total amount of wall time = 183.719205 + 0: The maximum resident set size (KB) = 569556 Test 021 control_fhzero PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_CubedSphereGrid -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/control_CubedSphereGrid +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/control_CubedSphereGrid Checking test 022 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1266,28 +1266,28 @@ Checking test 022 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 192.091470 - 0: The maximum resident set size (KB) = 570544 + 0: The total amount of wall time = 175.960185 + 0: The maximum resident set size (KB) = 568728 Test 022 control_CubedSphereGrid PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_CubedSphereGrid_parallel -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/control_CubedSphereGrid_parallel +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/control_CubedSphereGrid_parallel Checking test 023 control_CubedSphereGrid_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 191.513036 - 0: The maximum resident set size (KB) = 566560 + 0: The total amount of wall time = 181.350989 + 0: The maximum resident set size (KB) = 573632 Test 023 control_CubedSphereGrid_parallel PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_latlon -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/control_latlon +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/control_latlon Checking test 024 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1298,32 +1298,32 @@ Checking test 024 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 201.400137 - 0: The maximum resident set size (KB) = 574808 + 0: The total amount of wall time = 179.017674 + 0: The maximum resident set size (KB) = 576560 Test 024 control_latlon PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/control_wrtGauss_netcdf_parallel +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/control_wrtGauss_netcdf_parallel Checking test 025 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 194.989165 - 0: The maximum resident set size (KB) = 566284 + 0: The total amount of wall time = 181.804077 + 0: The maximum resident set size (KB) = 566272 Test 025 control_wrtGauss_netcdf_parallel PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_c48 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/control_c48 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/control_c48 Checking test 026 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1362,14 +1362,14 @@ Checking test 026 control_c48 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0: The total amount of wall time = 589.769640 -0: The maximum resident set size (KB) = 787096 +0: The total amount of wall time = 592.395813 +0: The maximum resident set size (KB) = 784060 Test 026 control_c48 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_c192 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/control_c192 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/control_c192 Checking test 027 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1380,14 +1380,14 @@ Checking test 027 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 730.496102 - 0: The maximum resident set size (KB) = 690252 + 0: The total amount of wall time = 730.958096 + 0: The maximum resident set size (KB) = 691540 Test 027 control_c192 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_c384 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/control_c384 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/control_c384 Checking test 028 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1398,14 +1398,14 @@ Checking test 028 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 1004.675754 - 0: The maximum resident set size (KB) = 1063132 + 0: The total amount of wall time = 935.776171 + 0: The maximum resident set size (KB) = 1071344 Test 028 control_c384 PASS Tries: 2 baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_c384gdas -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/control_c384gdas +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/control_c384gdas Checking test 029 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1448,14 +1448,14 @@ Checking test 029 control_c384gdas results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 837.813848 - 0: The maximum resident set size (KB) = 1152192 + 0: The total amount of wall time = 800.897116 + 0: The maximum resident set size (KB) = 1162444 Test 029 control_c384gdas PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_c384_progsigma -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/control_c384_progsigma +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/control_c384_progsigma Checking test 030 control_c384_progsigma results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1466,14 +1466,14 @@ Checking test 030 control_c384_progsigma results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 994.578369 - 0: The maximum resident set size (KB) = 988936 + 0: The total amount of wall time = 956.874554 + 0: The maximum resident set size (KB) = 992600 Test 030 control_c384_progsigma PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_stochy -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/control_stochy +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/control_stochy Checking test 031 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1484,28 +1484,28 @@ Checking test 031 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 136.467116 - 0: The maximum resident set size (KB) = 577464 + 0: The total amount of wall time = 129.411758 + 0: The maximum resident set size (KB) = 575988 Test 031 control_stochy PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_stochy -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/control_stochy_restart +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/control_stochy_restart Checking test 032 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 64.740344 - 0: The maximum resident set size (KB) = 387036 + 0: The total amount of wall time = 61.473498 + 0: The maximum resident set size (KB) = 395996 Test 032 control_stochy_restart PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_lndp -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/control_lndp +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/control_lndp Checking test 033 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1516,14 +1516,14 @@ Checking test 033 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 121.119182 - 0: The maximum resident set size (KB) = 574700 + 0: The total amount of wall time = 109.089056 + 0: The maximum resident set size (KB) = 573308 Test 033 control_lndp PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_iovr4 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/control_iovr4 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/control_iovr4 Checking test 034 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1538,14 +1538,14 @@ Checking test 034 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 202.301805 - 0: The maximum resident set size (KB) = 569704 + 0: The total amount of wall time = 186.584188 + 0: The maximum resident set size (KB) = 570548 Test 034 control_iovr4 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_iovr5 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/control_iovr5 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/control_iovr5 Checking test 035 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1560,14 +1560,14 @@ Checking test 035 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 202.945344 - 0: The maximum resident set size (KB) = 568904 + 0: The total amount of wall time = 189.026882 + 0: The maximum resident set size (KB) = 569160 Test 035 control_iovr5 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/control_p8 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/control_p8 Checking test 036 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1614,14 +1614,14 @@ Checking test 036 control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 280.902175 - 0: The maximum resident set size (KB) = 1532472 + 0: The total amount of wall time = 225.681439 + 0: The maximum resident set size (KB) = 1541856 Test 036 control_p8 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_p8_lndp -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/control_p8_lndp +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/control_p8_lndp Checking test 037 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1640,14 +1640,14 @@ Checking test 037 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 511.557926 - 0: The maximum resident set size (KB) = 1531268 + 0: The total amount of wall time = 435.092314 + 0: The maximum resident set size (KB) = 1537936 Test 037 control_p8_lndp PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/control_restart_p8 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/control_restart_p8 Checking test 038 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1686,14 +1686,14 @@ Checking test 038 control_restart_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 126.418179 - 0: The maximum resident set size (KB) = 760976 + 0: The total amount of wall time = 114.209300 + 0: The maximum resident set size (KB) = 772492 Test 038 control_restart_p8 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/control_decomp_p8 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/control_decomp_p8 Checking test 039 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1736,14 +1736,14 @@ Checking test 039 control_decomp_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 276.876941 - 0: The maximum resident set size (KB) = 1520512 + 0: The total amount of wall time = 230.970551 + 0: The maximum resident set size (KB) = 1531884 Test 039 control_decomp_p8 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/control_2threads_p8 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/control_2threads_p8 Checking test 040 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1786,14 +1786,14 @@ Checking test 040 control_2threads_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 247.904391 - 0: The maximum resident set size (KB) = 1611136 + 0: The total amount of wall time = 211.931700 + 0: The maximum resident set size (KB) = 1617548 Test 040 control_2threads_p8 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_p8_rrtmgp -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/control_p8_rrtmgp +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/control_p8_rrtmgp Checking test 041 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1840,14 +1840,14 @@ Checking test 041 control_p8_rrtmgp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 287.319235 - 0: The maximum resident set size (KB) = 1655676 + 0: The total amount of wall time = 267.078700 + 0: The maximum resident set size (KB) = 1671812 Test 041 control_p8_rrtmgp PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/merra2_thompson -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/merra2_thompson +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/merra2_thompson Checking test 042 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1894,14 +1894,14 @@ Checking test 042 merra2_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 273.288752 - 0: The maximum resident set size (KB) = 1544292 + 0: The total amount of wall time = 232.321703 + 0: The maximum resident set size (KB) = 1558924 Test 042 merra2_thompson PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/regional_control +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/regional_control Checking test 043 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1912,28 +1912,28 @@ Checking test 043 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 452.514390 - 0: The maximum resident set size (KB) = 778296 + 0: The total amount of wall time = 400.504598 + 0: The maximum resident set size (KB) = 785404 Test 043 regional_control PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/regional_restart +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/regional_restart Checking test 044 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 221.308949 - 0: The maximum resident set size (KB) = 772552 + 0: The total amount of wall time = 200.323837 + 0: The maximum resident set size (KB) = 777456 Test 044 regional_restart PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/regional_decomp +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/regional_decomp Checking test 045 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1944,14 +1944,14 @@ Checking test 045 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 440.126648 - 0: The maximum resident set size (KB) = 769016 + 0: The total amount of wall time = 417.531078 + 0: The maximum resident set size (KB) = 775796 Test 045 regional_decomp PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/regional_2threads +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/regional_2threads Checking test 046 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1962,14 +1962,14 @@ Checking test 046 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 265.454208 - 0: The maximum resident set size (KB) = 741288 + 0: The total amount of wall time = 251.662042 + 0: The maximum resident set size (KB) = 742036 Test 046 regional_2threads PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/regional_noquilt -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/regional_noquilt +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/regional_noquilt Checking test 047 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1977,28 +1977,28 @@ Checking test 047 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 468.656717 - 0: The maximum resident set size (KB) = 765308 + 0: The total amount of wall time = 440.545258 + 0: The maximum resident set size (KB) = 770176 Test 047 regional_noquilt PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/regional_netcdf_parallel -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/regional_netcdf_parallel +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/regional_netcdf_parallel Checking test 048 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc ............ALT CHECK......OK Comparing phyf000.nc .........OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing phyf006.nc .........OK - 0: The total amount of wall time = 413.867255 - 0: The maximum resident set size (KB) = 772192 + 0: The total amount of wall time = 390.363673 + 0: The maximum resident set size (KB) = 773776 Test 048 regional_netcdf_parallel PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/regional_2dwrtdecomp +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/regional_2dwrtdecomp Checking test 049 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2009,14 +2009,14 @@ Checking test 049 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 426.410778 - 0: The maximum resident set size (KB) = 784232 + 0: The total amount of wall time = 397.410664 + 0: The maximum resident set size (KB) = 783108 Test 049 regional_2dwrtdecomp PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/fv3_regional_wofs -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/regional_wofs +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/regional_wofs Checking test 050 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2027,14 +2027,14 @@ Checking test 050 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 545.174831 - 0: The maximum resident set size (KB) = 513704 + 0: The total amount of wall time = 509.256573 + 0: The maximum resident set size (KB) = 511476 Test 050 regional_wofs PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/rap_control +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/rap_control Checking test 051 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2081,14 +2081,14 @@ Checking test 051 rap_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 681.743014 - 0: The maximum resident set size (KB) = 948576 + 0: The total amount of wall time = 578.733601 + 0: The maximum resident set size (KB) = 954096 Test 051 rap_control PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_rrtmgp -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/rap_rrtmgp +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/rap_rrtmgp Checking test 052 rap_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2135,14 +2135,14 @@ Checking test 052 rap_rrtmgp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 694.781813 - 0: The maximum resident set size (KB) = 1075828 + 0: The total amount of wall time = 629.554835 + 0: The maximum resident set size (KB) = 1084936 Test 052 rap_rrtmgp PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/regional_spp_sppt_shum_skeb -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/regional_spp_sppt_shum_skeb +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/regional_spp_sppt_shum_skeb Checking test 053 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2153,14 +2153,14 @@ Checking test 053 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 347.885389 - 0: The maximum resident set size (KB) = 1064272 + 0: The total amount of wall time = 318.654000 + 0: The maximum resident set size (KB) = 1069748 Test 053 regional_spp_sppt_shum_skeb PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/rap_decomp +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/rap_decomp Checking test 054 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2207,14 +2207,14 @@ Checking test 054 rap_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 674.942269 - 0: The maximum resident set size (KB) = 939584 + 0: The total amount of wall time = 610.062876 + 0: The maximum resident set size (KB) = 936792 Test 054 rap_decomp PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/rap_2threads +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/rap_2threads Checking test 055 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2261,14 +2261,14 @@ Checking test 055 rap_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 603.409013 - 0: The maximum resident set size (KB) = 1010640 + 0: The total amount of wall time = 549.478987 + 0: The maximum resident set size (KB) = 1017164 Test 055 rap_2threads PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/rap_restart +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/rap_restart Checking test 056 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2307,14 +2307,14 @@ Checking test 056 rap_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 320.474238 - 0: The maximum resident set size (KB) = 820540 + 0: The total amount of wall time = 293.014363 + 0: The maximum resident set size (KB) = 828056 Test 056 rap_restart PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/rap_sfcdiff +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/rap_sfcdiff Checking test 057 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2361,14 +2361,14 @@ Checking test 057 rap_sfcdiff results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 662.178770 - 0: The maximum resident set size (KB) = 941204 + 0: The total amount of wall time = 577.772629 + 0: The maximum resident set size (KB) = 940484 Test 057 rap_sfcdiff PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/rap_sfcdiff_decomp +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/rap_sfcdiff_decomp Checking test 058 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2415,14 +2415,14 @@ Checking test 058 rap_sfcdiff_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 672.825258 - 0: The maximum resident set size (KB) = 943980 + 0: The total amount of wall time = 610.369856 + 0: The maximum resident set size (KB) = 947912 Test 058 rap_sfcdiff_decomp PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/rap_sfcdiff_restart +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/rap_sfcdiff_restart Checking test 059 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2461,14 +2461,14 @@ Checking test 059 rap_sfcdiff_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 500.254369 - 0: The maximum resident set size (KB) = 824824 + 0: The total amount of wall time = 426.479518 + 0: The maximum resident set size (KB) = 836992 Test 059 rap_sfcdiff_restart PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/hrrr_control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/hrrr_control +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/hrrr_control Checking test 060 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2515,14 +2515,14 @@ Checking test 060 hrrr_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 619.945139 - 0: The maximum resident set size (KB) = 953584 + 0: The total amount of wall time = 554.969691 + 0: The maximum resident set size (KB) = 955248 Test 060 hrrr_control PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/hrrr_control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/hrrr_control_decomp +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/hrrr_control_decomp Checking test 061 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2569,14 +2569,14 @@ Checking test 061 hrrr_control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 664.189205 - 0: The maximum resident set size (KB) = 931136 + 0: The total amount of wall time = 581.886548 + 0: The maximum resident set size (KB) = 945740 Test 061 hrrr_control_decomp PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/hrrr_control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/hrrr_control_2threads +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/hrrr_control_2threads Checking test 062 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2623,14 +2623,14 @@ Checking test 062 hrrr_control_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 628.229319 - 0: The maximum resident set size (KB) = 1012228 + 0: The total amount of wall time = 522.815619 + 0: The maximum resident set size (KB) = 1014528 Test 062 hrrr_control_2threads PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/hrrr_control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/hrrr_control_restart +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/hrrr_control_restart Checking test 063 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2669,14 +2669,14 @@ Checking test 063 hrrr_control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 496.457026 - 0: The maximum resident set size (KB) = 833372 + 0: The total amount of wall time = 409.389874 + 0: The maximum resident set size (KB) = 830988 Test 063 hrrr_control_restart PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rrfs_v1beta -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/rrfs_v1beta +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/rrfs_v1beta Checking test 064 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2723,14 +2723,14 @@ Checking test 064 rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 645.882377 - 0: The maximum resident set size (KB) = 942392 + 0: The total amount of wall time = 575.890730 + 0: The maximum resident set size (KB) = 949352 Test 064 rrfs_v1beta PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rrfs_v1nssl -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/rrfs_v1nssl +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/rrfs_v1nssl Checking test 065 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2745,14 +2745,14 @@ Checking test 065 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 750.244516 - 0: The maximum resident set size (KB) = 637660 + 0: The total amount of wall time = 684.827941 + 0: The maximum resident set size (KB) = 631484 Test 065 rrfs_v1nssl PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/rrfs_v1nssl_nohailnoccn +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/rrfs_v1nssl_nohailnoccn Checking test 066 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2767,14 +2767,14 @@ Checking test 066 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 770.718126 - 0: The maximum resident set size (KB) = 632872 + 0: The total amount of wall time = 676.079937 + 0: The maximum resident set size (KB) = 628844 Test 066 rrfs_v1nssl_nohailnoccn PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/rrfs_conus13km_hrrr_warm +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/rrfs_conus13km_hrrr_warm Checking test 067 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2783,14 +2783,14 @@ Checking test 067 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 192.334688 - 0: The maximum resident set size (KB) = 842716 + 0: The total amount of wall time = 166.044877 + 0: The maximum resident set size (KB) = 854908 Test 067 rrfs_conus13km_hrrr_warm PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/rrfs_smoke_conus13km_hrrr_warm Checking test 068 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2799,14 +2799,14 @@ Checking test 068 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 317.537820 - 0: The maximum resident set size (KB) = 872132 + 0: The total amount of wall time = 185.456368 + 0: The maximum resident set size (KB) = 879032 Test 068 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/rrfs_conus13km_radar_tten_warm +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/rrfs_conus13km_radar_tten_warm Checking test 069 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2815,14 +2815,14 @@ Checking test 069 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 199.845840 - 0: The maximum resident set size (KB) = 854628 + 0: The total amount of wall time = 169.937312 + 0: The maximum resident set size (KB) = 854836 Test 069 rrfs_conus13km_radar_tten_warm PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/rrfs_conus13km_hrrr_warm_2threads +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/rrfs_conus13km_hrrr_warm_2threads Checking test 070 rrfs_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2831,14 +2831,14 @@ Checking test 070 rrfs_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 139.583649 - 0: The maximum resident set size (KB) = 807716 + 0: The total amount of wall time = 108.829571 + 0: The maximum resident set size (KB) = 815416 Test 070 rrfs_conus13km_hrrr_warm_2threads PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/rrfs_conus13km_radar_tten_warm_2threads +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/rrfs_conus13km_radar_tten_warm_2threads Checking test 071 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2847,14 +2847,14 @@ Checking test 071 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 224.931723 - 0: The maximum resident set size (KB) = 810760 + 0: The total amount of wall time = 111.791524 + 0: The maximum resident set size (KB) = 816212 Test 071 rrfs_conus13km_radar_tten_warm_2threads PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_csawmg -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/control_csawmg +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/control_csawmg Checking test 072 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2865,14 +2865,14 @@ Checking test 072 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 503.489135 - 0: The maximum resident set size (KB) = 657416 + 0: The total amount of wall time = 458.142775 + 0: The maximum resident set size (KB) = 666472 Test 072 control_csawmg PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_csawmgt -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/control_csawmgt +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/control_csawmgt Checking test 073 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2883,14 +2883,14 @@ Checking test 073 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 481.805651 - 0: The maximum resident set size (KB) = 669480 + 0: The total amount of wall time = 452.751492 + 0: The maximum resident set size (KB) = 662264 Test 073 control_csawmgt PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_ras -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/control_ras +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/control_ras Checking test 074 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2901,82 +2901,82 @@ Checking test 074 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 328.880865 - 0: The maximum resident set size (KB) = 641096 + 0: The total amount of wall time = 243.815344 + 0: The maximum resident set size (KB) = 639576 Test 074 control_ras PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_wam -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/control_wam +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/control_wam Checking test 075 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 173.790033 - 0: The maximum resident set size (KB) = 477072 + 0: The total amount of wall time = 149.948072 + 0: The maximum resident set size (KB) = 475828 Test 075 control_wam PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/rrfs_conus13km_hrrr_warm_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/rrfs_conus13km_hrrr_warm_debug Checking test 076 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 965.355808 - 0: The maximum resident set size (KB) = 876856 + 0: The total amount of wall time = 949.888683 + 0: The maximum resident set size (KB) = 880000 Test 076 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rrfs_conus13km_radar_tten_warm_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/rrfs_conus13km_radar_tten_warm_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/rrfs_conus13km_radar_tten_warm_debug Checking test 077 rrfs_conus13km_radar_tten_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 967.018244 - 0: The maximum resident set size (KB) = 871644 + 0: The total amount of wall time = 954.881182 + 0: The maximum resident set size (KB) = 898584 Test 077 rrfs_conus13km_radar_tten_warm_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/control_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/control_debug Checking test 078 control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 254.868063 - 0: The maximum resident set size (KB) = 737564 + 0: The total amount of wall time = 196.558461 + 0: The maximum resident set size (KB) = 739024 Test 078 control_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/control_2threads_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/control_2threads_debug Checking test 079 control_2threads_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 241.536844 - 0: The maximum resident set size (KB) = 781444 + 0: The total amount of wall time = 181.208406 + 0: The maximum resident set size (KB) = 788640 Test 079 control_2threads_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_CubedSphereGrid_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/control_CubedSphereGrid_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/control_CubedSphereGrid_debug Checking test 080 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3003,348 +3003,348 @@ Checking test 080 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 261.587950 - 0: The maximum resident set size (KB) = 731076 + 0: The total amount of wall time = 205.413273 + 0: The maximum resident set size (KB) = 732968 Test 080 control_CubedSphereGrid_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/control_wrtGauss_netcdf_parallel_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/control_wrtGauss_netcdf_parallel_debug Checking test 081 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc .........OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 265.528852 - 0: The maximum resident set size (KB) = 731040 + 0: The total amount of wall time = 194.762798 + 0: The maximum resident set size (KB) = 734484 Test 081 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_stochy_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/control_stochy_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/control_stochy_debug Checking test 082 control_stochy_debug 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.338327 - 0: The maximum resident set size (KB) = 741088 + 0: The total amount of wall time = 221.175541 + 0: The maximum resident set size (KB) = 743260 Test 082 control_stochy_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_lndp_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/control_lndp_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/control_lndp_debug Checking test 083 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 240.809055 - 0: The maximum resident set size (KB) = 739116 + 0: The total amount of wall time = 197.682874 + 0: The maximum resident set size (KB) = 737324 Test 083 control_lndp_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_csawmg_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/control_csawmg_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/control_csawmg_debug Checking test 084 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 337.731964 - 0: The maximum resident set size (KB) = 788836 + 0: The total amount of wall time = 312.285287 + 0: The maximum resident set size (KB) = 789792 Test 084 control_csawmg_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_csawmgt_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/control_csawmgt_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/control_csawmgt_debug Checking test 085 control_csawmgt_debug 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.808537 - 0: The maximum resident set size (KB) = 781480 + 0: The total amount of wall time = 301.531496 + 0: The maximum resident set size (KB) = 786224 Test 085 control_csawmgt_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_ras_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/control_ras_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/control_ras_debug Checking test 086 control_ras_debug 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.172096 - 0: The maximum resident set size (KB) = 747868 + 0: The total amount of wall time = 200.243506 + 0: The maximum resident set size (KB) = 750144 Test 086 control_ras_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_diag_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/control_diag_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/control_diag_debug Checking test 087 control_diag_debug 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.713568 - 0: The maximum resident set size (KB) = 785832 + 0: The total amount of wall time = 207.833311 + 0: The maximum resident set size (KB) = 795440 Test 087 control_diag_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_debug_p8 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/control_debug_p8 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/control_debug_p8 Checking test 088 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 251.185053 - 0: The maximum resident set size (KB) = 1561080 + 0: The total amount of wall time = 221.849768 + 0: The maximum resident set size (KB) = 1560876 Test 088 control_debug_p8 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/regional_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/regional_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/regional_debug Checking test 089 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 1334.960812 - 0: The maximum resident set size (KB) = 797552 + 0: The total amount of wall time = 1275.391740 + 0: The maximum resident set size (KB) = 794664 Test 089 regional_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_control_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/rap_control_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/rap_control_debug Checking test 090 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 401.156539 - 0: The maximum resident set size (KB) = 1111692 + 0: The total amount of wall time = 353.890300 + 0: The maximum resident set size (KB) = 1110160 Test 090 rap_control_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/hrrr_control_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/hrrr_control_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/hrrr_control_debug Checking test 091 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 443.821416 - 0: The maximum resident set size (KB) = 1100772 + 0: The total amount of wall time = 348.200572 + 0: The maximum resident set size (KB) = 1099336 Test 091 hrrr_control_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_control_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/rap_unified_drag_suite_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/rap_unified_drag_suite_debug Checking test 092 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 401.368547 - 0: The maximum resident set size (KB) = 1109888 + 0: The total amount of wall time = 354.150198 + 0: The maximum resident set size (KB) = 1114768 Test 092 rap_unified_drag_suite_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_diag_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/rap_diag_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/rap_diag_debug Checking test 093 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 408.381312 - 0: The maximum resident set size (KB) = 1188312 + 0: The total amount of wall time = 375.468348 + 0: The maximum resident set size (KB) = 1187072 Test 093 rap_diag_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_cires_ugwp_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/rap_cires_ugwp_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/rap_cires_ugwp_debug Checking test 094 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 408.202086 - 0: The maximum resident set size (KB) = 1114732 + 0: The total amount of wall time = 360.696577 + 0: The maximum resident set size (KB) = 1110340 Test 094 rap_cires_ugwp_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_cires_ugwp_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/rap_unified_ugwp_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/rap_unified_ugwp_debug Checking test 095 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 403.646778 - 0: The maximum resident set size (KB) = 1104248 + 0: The total amount of wall time = 364.871097 + 0: The maximum resident set size (KB) = 1113752 Test 095 rap_unified_ugwp_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_lndp_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/rap_lndp_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/rap_lndp_debug Checking test 096 rap_lndp_debug 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.703368 - 0: The maximum resident set size (KB) = 1112956 + 0: The total amount of wall time = 361.069165 + 0: The maximum resident set size (KB) = 1113308 Test 096 rap_lndp_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_flake_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/rap_flake_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/rap_flake_debug Checking test 097 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 410.028977 - 0: The maximum resident set size (KB) = 1110132 + 0: The total amount of wall time = 353.979746 + 0: The maximum resident set size (KB) = 1110912 Test 097 rap_flake_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_progcld_thompson_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/rap_progcld_thompson_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/rap_progcld_thompson_debug Checking test 098 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 397.097706 - 0: The maximum resident set size (KB) = 1106888 + 0: The total amount of wall time = 353.808358 + 0: The maximum resident set size (KB) = 1111880 Test 098 rap_progcld_thompson_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_noah_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/rap_noah_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/rap_noah_debug Checking test 099 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 385.285474 - 0: The maximum resident set size (KB) = 1112100 + 0: The total amount of wall time = 347.294211 + 0: The maximum resident set size (KB) = 1114640 Test 099 rap_noah_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_rrtmgp_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/rap_rrtmgp_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/rap_rrtmgp_debug Checking test 100 rap_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 638.281729 - 0: The maximum resident set size (KB) = 1236896 + 0: The total amount of wall time = 593.106912 + 0: The maximum resident set size (KB) = 1241356 Test 100 rap_rrtmgp_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_sfcdiff_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/rap_sfcdiff_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/rap_sfcdiff_debug Checking test 101 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 526.196908 - 0: The maximum resident set size (KB) = 1108964 + 0: The total amount of wall time = 354.387835 + 0: The maximum resident set size (KB) = 1107976 Test 101 rap_sfcdiff_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/rap_noah_sfcdiff_cires_ugwp_debug Checking test 102 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 630.858801 - 0: The maximum resident set size (KB) = 1101964 + 0: The total amount of wall time = 583.763568 + 0: The maximum resident set size (KB) = 1104336 Test 102 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rrfs_v1beta_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/rrfs_v1beta_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/rrfs_v1beta_debug Checking test 103 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 380.753862 - 0: The maximum resident set size (KB) = 1109612 + 0: The total amount of wall time = 347.446018 + 0: The maximum resident set size (KB) = 1109360 Test 103 rrfs_v1beta_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_wam_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/control_wam_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/control_wam_debug Checking test 104 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 373.725429 - 0: The maximum resident set size (KB) = 424860 + 0: The total amount of wall time = 368.498182 + 0: The maximum resident set size (KB) = 430476 Test 104 control_wam_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 105 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3355,14 +3355,14 @@ Checking test 105 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 327.437696 - 0: The maximum resident set size (KB) = 966396 + 0: The total amount of wall time = 280.737621 + 0: The maximum resident set size (KB) = 959068 Test 105 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/rap_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/rap_control_dyn32_phy32 Checking test 106 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3409,14 +3409,14 @@ Checking test 106 rap_control_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 526.172730 - 0: The maximum resident set size (KB) = 853376 + 0: The total amount of wall time = 463.648821 + 0: The maximum resident set size (KB) = 842828 Test 106 rap_control_dyn32_phy32 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/hrrr_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/hrrr_control_dyn32_phy32 Checking test 107 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3463,14 +3463,14 @@ Checking test 107 hrrr_control_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 265.713523 - 0: The maximum resident set size (KB) = 835724 + 0: The total amount of wall time = 239.472936 + 0: The maximum resident set size (KB) = 837256 Test 107 hrrr_control_dyn32_phy32 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/rap_2threads_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/rap_2threads_dyn32_phy32 Checking test 108 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3517,14 +3517,14 @@ Checking test 108 rap_2threads_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 491.870475 - 0: The maximum resident set size (KB) = 883796 + 0: The total amount of wall time = 437.285254 + 0: The maximum resident set size (KB) = 882580 Test 108 rap_2threads_dyn32_phy32 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/hrrr_control_2threads_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/hrrr_control_2threads_dyn32_phy32 Checking test 109 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3571,14 +3571,14 @@ Checking test 109 hrrr_control_2threads_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 256.009892 - 0: The maximum resident set size (KB) = 877912 + 0: The total amount of wall time = 223.409507 + 0: The maximum resident set size (KB) = 876232 Test 109 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/hrrr_control_decomp_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/hrrr_control_decomp_dyn32_phy32 Checking test 110 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3625,14 +3625,14 @@ Checking test 110 hrrr_control_decomp_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 299.148449 - 0: The maximum resident set size (KB) = 830696 + 0: The total amount of wall time = 250.543674 + 0: The maximum resident set size (KB) = 828748 Test 110 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/rap_restart_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/rap_restart_dyn32_phy32 Checking test 111 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3671,14 +3671,14 @@ Checking test 111 rap_restart_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 433.353737 - 0: The maximum resident set size (KB) = 801776 + 0: The total amount of wall time = 452.776071 + 0: The maximum resident set size (KB) = 809952 Test 111 rap_restart_dyn32_phy32 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/hrrr_control_restart_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/hrrr_control_restart_dyn32_phy32 Checking test 112 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3717,14 +3717,14 @@ Checking test 112 hrrr_control_restart_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 139.187151 - 0: The maximum resident set size (KB) = 758536 + 0: The total amount of wall time = 125.250093 + 0: The maximum resident set size (KB) = 760976 Test 112 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_control_dyn64_phy32 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/rap_control_dyn64_phy32 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/rap_control_dyn64_phy32 Checking test 113 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3771,81 +3771,81 @@ Checking test 113 rap_control_dyn64_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 346.297725 - 0: The maximum resident set size (KB) = 873160 + 0: The total amount of wall time = 302.475940 + 0: The maximum resident set size (KB) = 877000 Test 113 rap_control_dyn64_phy32 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/rap_control_debug_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/rap_control_debug_dyn32_phy32 Checking test 114 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 378.130230 - 0: The maximum resident set size (KB) = 1004148 + 0: The total amount of wall time = 347.847142 + 0: The maximum resident set size (KB) = 1003624 Test 114 rap_control_debug_dyn32_phy32 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/hrrr_control_debug_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/hrrr_control_debug_dyn32_phy32 Checking test 115 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 371.841427 - 0: The maximum resident set size (KB) = 1000924 + 0: The total amount of wall time = 357.029933 + 0: The maximum resident set size (KB) = 997540 Test 115 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/rap_control_dyn64_phy32_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/rap_control_dyn64_phy32_debug Checking test 116 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 381.430328 - 0: The maximum resident set size (KB) = 1036036 + 0: The total amount of wall time = 357.179048 + 0: The maximum resident set size (KB) = 1033768 Test 116 rap_control_dyn64_phy32_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/hafs_regional_atm -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/hafs_regional_atm +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/hafs_regional_atm Checking test 117 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 374.808616 - 0: The maximum resident set size (KB) = 1098212 + 0: The total amount of wall time = 349.839281 + 0: The maximum resident set size (KB) = 1163880 Test 117 hafs_regional_atm PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/hafs_regional_atm_thompson_gfdlsf +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/hafs_regional_atm_thompson_gfdlsf Checking test 118 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 558.167925 - 0: The maximum resident set size (KB) = 1522596 + 0: The total amount of wall time = 406.402270 + 0: The maximum resident set size (KB) = 1527072 Test 118 hafs_regional_atm_thompson_gfdlsf PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/hafs_regional_atm_ocn -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/hafs_regional_atm_ocn +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/hafs_regional_atm_ocn Checking test 119 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3854,14 +3854,14 @@ Checking test 119 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 593.327032 - 0: The maximum resident set size (KB) = 1269236 + 0: The total amount of wall time = 546.882444 + 0: The maximum resident set size (KB) = 1272068 Test 119 hafs_regional_atm_ocn PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/hafs_regional_atm_wav -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/hafs_regional_atm_wav +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/hafs_regional_atm_wav Checking test 120 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3870,14 +3870,14 @@ Checking test 120 hafs_regional_atm_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 935.150715 - 0: The maximum resident set size (KB) = 1297984 + 0: The total amount of wall time = 1079.520530 + 0: The maximum resident set size (KB) = 1292400 Test 120 hafs_regional_atm_wav PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/hafs_regional_atm_ocn_wav -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/hafs_regional_atm_ocn_wav +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/hafs_regional_atm_ocn_wav Checking test 121 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3888,14 +3888,14 @@ Checking test 121 hafs_regional_atm_ocn_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 1040.541720 - 0: The maximum resident set size (KB) = 1271848 + 0: The total amount of wall time = 1202.627394 + 0: The maximum resident set size (KB) = 1309704 Test 121 hafs_regional_atm_ocn_wav PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/hafs_regional_docn -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/hafs_regional_docn +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/hafs_regional_docn Checking test 122 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3903,14 +3903,14 @@ Checking test 122 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 566.848881 - 0: The maximum resident set size (KB) = 1283700 + 0: The total amount of wall time = 660.452588 + 0: The maximum resident set size (KB) = 1283152 Test 122 hafs_regional_docn PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/hafs_regional_docn_oisst -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/hafs_regional_docn_oisst +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/hafs_regional_docn_oisst Checking test 123 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3918,131 +3918,131 @@ Checking test 123 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 558.495336 - 0: The maximum resident set size (KB) = 1264932 + 0: The total amount of wall time = 748.544619 + 0: The maximum resident set size (KB) = 1263728 Test 123 hafs_regional_docn_oisst PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/hafs_regional_datm_cdeps -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/hafs_regional_datm_cdeps +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/hafs_regional_datm_cdeps Checking test 124 hafs_regional_datm_cdeps 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 = 1312.542220 - 0: The maximum resident set size (KB) = 974504 + 0: The total amount of wall time = 1516.989933 + 0: The maximum resident set size (KB) = 975808 Test 124 hafs_regional_datm_cdeps PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/datm_cdeps_control_cfsr +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/datm_cdeps_control_cfsr Checking test 125 datm_cdeps_control_cfsr results .... Comparing RESTART/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 = 241.112252 - 0: The maximum resident set size (KB) = 972708 + 0: The total amount of wall time = 202.546991 + 0: The maximum resident set size (KB) = 959376 Test 125 datm_cdeps_control_cfsr PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/datm_cdeps_restart_cfsr +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/datm_cdeps_restart_cfsr Checking test 126 datm_cdeps_restart_cfsr results .... Comparing RESTART/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 = 132.029820 - 0: The maximum resident set size (KB) = 935260 + 0: The total amount of wall time = 120.460566 + 0: The maximum resident set size (KB) = 953128 Test 126 datm_cdeps_restart_cfsr PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/datm_cdeps_control_gefs -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/datm_cdeps_control_gefs +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/datm_cdeps_control_gefs Checking test 127 datm_cdeps_control_gefs results .... Comparing RESTART/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 = 237.893667 - 0: The maximum resident set size (KB) = 855920 + 0: The total amount of wall time = 196.872804 + 0: The maximum resident set size (KB) = 862320 Test 127 datm_cdeps_control_gefs PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/datm_cdeps_iau_gefs -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/datm_cdeps_iau_gefs +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/datm_cdeps_iau_gefs Checking test 128 datm_cdeps_iau_gefs results .... Comparing RESTART/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 = 227.700750 - 0: The maximum resident set size (KB) = 861892 + 0: The total amount of wall time = 211.432284 + 0: The maximum resident set size (KB) = 866148 Test 128 datm_cdeps_iau_gefs PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/datm_cdeps_stochy_gefs -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/datm_cdeps_stochy_gefs +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/datm_cdeps_stochy_gefs Checking test 129 datm_cdeps_stochy_gefs results .... Comparing RESTART/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 = 254.269559 - 0: The maximum resident set size (KB) = 860960 + 0: The total amount of wall time = 213.361616 + 0: The maximum resident set size (KB) = 858268 Test 129 datm_cdeps_stochy_gefs PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/datm_cdeps_ciceC_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/datm_cdeps_ciceC_cfsr +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/datm_cdeps_ciceC_cfsr Checking test 130 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/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 = 219.037866 - 0: The maximum resident set size (KB) = 975116 + 0: The total amount of wall time = 204.972232 + 0: The maximum resident set size (KB) = 973856 Test 130 datm_cdeps_ciceC_cfsr PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/datm_cdeps_bulk_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/datm_cdeps_bulk_cfsr +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/datm_cdeps_bulk_cfsr Checking test 131 datm_cdeps_bulk_cfsr results .... Comparing RESTART/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 = 222.883163 - 0: The maximum resident set size (KB) = 958392 + 0: The total amount of wall time = 205.176818 + 0: The maximum resident set size (KB) = 962176 Test 131 datm_cdeps_bulk_cfsr PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/datm_cdeps_bulk_gefs -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/datm_cdeps_bulk_gefs +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/datm_cdeps_bulk_gefs Checking test 132 datm_cdeps_bulk_gefs results .... Comparing RESTART/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 = 220.780371 - 0: The maximum resident set size (KB) = 863968 + 0: The total amount of wall time = 199.434117 + 0: The maximum resident set size (KB) = 860696 Test 132 datm_cdeps_bulk_gefs PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/datm_cdeps_mx025_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/datm_cdeps_mx025_cfsr +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/datm_cdeps_mx025_cfsr Checking test 133 datm_cdeps_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -4051,14 +4051,14 @@ Checking test 133 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 671.508742 - 0: The maximum resident set size (KB) = 764524 + 0: The total amount of wall time = 636.359860 + 0: The maximum resident set size (KB) = 763716 Test 133 datm_cdeps_mx025_cfsr PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/datm_cdeps_mx025_gefs -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/datm_cdeps_mx025_gefs +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/datm_cdeps_mx025_gefs Checking test 134 datm_cdeps_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -4067,64 +4067,64 @@ Checking test 134 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 705.266725 - 0: The maximum resident set size (KB) = 736780 + 0: The total amount of wall time = 635.285786 + 0: The maximum resident set size (KB) = 735488 Test 134 datm_cdeps_mx025_gefs PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/datm_cdeps_multiple_files_cfsr +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/datm_cdeps_multiple_files_cfsr Checking test 135 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 241.553515 - 0: The maximum resident set size (KB) = 970588 + 0: The total amount of wall time = 205.615364 + 0: The maximum resident set size (KB) = 960388 Test 135 datm_cdeps_multiple_files_cfsr PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/datm_cdeps_3072x1536_cfsr +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/datm_cdeps_3072x1536_cfsr Checking test 136 datm_cdeps_3072x1536_cfsr results .... Comparing RESTART/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 = 350.708307 - 0: The maximum resident set size (KB) = 2245616 + 0: The total amount of wall time = 279.228343 + 0: The maximum resident set size (KB) = 2255324 Test 136 datm_cdeps_3072x1536_cfsr PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/datm_cdeps_gfs -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/datm_cdeps_gfs +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/datm_cdeps_gfs Checking test 137 datm_cdeps_gfs results .... Comparing RESTART/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.903553 - 0: The maximum resident set size (KB) = 2254764 + 0: The total amount of wall time = 309.354181 + 0: The maximum resident set size (KB) = 2248072 Test 137 datm_cdeps_gfs PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/datm_cdeps_debug_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/datm_cdeps_debug_cfsr +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/datm_cdeps_debug_cfsr Checking test 138 datm_cdeps_debug_cfsr results .... Comparing RESTART/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 = 701.069672 - 0: The maximum resident set size (KB) = 942484 + 0: The total amount of wall time = 623.242236 + 0: The maximum resident set size (KB) = 949132 Test 138 datm_cdeps_debug_cfsr PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/datm_cdeps_lnd_gswp3 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/datm_cdeps_lnd_gswp3 Checking test 139 datm_cdeps_lnd_gswp3 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 @@ -4133,14 +4133,14 @@ Checking test 139 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 16.586440 - 0: The maximum resident set size (KB) = 251976 + 0: The total amount of wall time = 10.651136 + 0: The maximum resident set size (KB) = 242340 Test 139 datm_cdeps_lnd_gswp3 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/datm_cdeps_lnd_gswp3_rst +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/datm_cdeps_lnd_gswp3_rst Checking test 140 datm_cdeps_lnd_gswp3_rst 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 @@ -4149,14 +4149,14 @@ Checking test 140 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 33.991579 - 0: The maximum resident set size (KB) = 252204 + 0: The total amount of wall time = 85.247607 + 0: The maximum resident set size (KB) = 251048 Test 140 datm_cdeps_lnd_gswp3_rst PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_p8_atmlnd_sbs -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/control_p8_atmlnd_sbs +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/control_p8_atmlnd_sbs Checking test 141 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4241,14 +4241,14 @@ Checking test 141 control_p8_atmlnd_sbs results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 313.342134 - 0: The maximum resident set size (KB) = 1597144 + 0: The total amount of wall time = 411.027473 + 0: The maximum resident set size (KB) = 1606088 Test 141 control_p8_atmlnd_sbs PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_atmwav -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/control_atmwav +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/control_atmwav Checking test 142 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4292,14 +4292,14 @@ Checking test 142 control_atmwav results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 125.848675 - 0: The maximum resident set size (KB) = 596560 + 0: The total amount of wall time = 217.648433 + 0: The maximum resident set size (KB) = 600840 Test 142 control_atmwav PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/atmaero_control_p8 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/atmaero_control_p8 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/atmaero_control_p8 Checking test 143 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4343,14 +4343,14 @@ Checking test 143 atmaero_control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 319.242346 - 0: The maximum resident set size (KB) = 1632024 + 0: The total amount of wall time = 470.604116 + 0: The maximum resident set size (KB) = 1650372 Test 143 atmaero_control_p8 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/atmaero_control_p8_rad -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/atmaero_control_p8_rad +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/atmaero_control_p8_rad Checking test 144 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4394,14 +4394,14 @@ Checking test 144 atmaero_control_p8_rad results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 403.848053 - 0: The maximum resident set size (KB) = 1672472 + 0: The total amount of wall time = 524.018285 + 0: The maximum resident set size (KB) = 1667152 Test 144 atmaero_control_p8_rad PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/atmaero_control_p8_rad_micro -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/atmaero_control_p8_rad_micro +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/atmaero_control_p8_rad_micro Checking test 145 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4445,14 +4445,14 @@ Checking test 145 atmaero_control_p8_rad_micro results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 418.086310 - 0: The maximum resident set size (KB) = 1684860 + 0: The total amount of wall time = 517.821068 + 0: The maximum resident set size (KB) = 1682656 Test 145 atmaero_control_p8_rad_micro PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/regional_atmaq -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_134342/regional_atmaq +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_66289/regional_atmaq Checking test 146 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4468,12 +4468,12 @@ Checking test 146 regional_atmaq results .... Comparing RESTART/phy_data.nc .........OK Comparing RESTART/sfc_data.nc .........OK - 0: The total amount of wall time = 1052.047488 - 0: The maximum resident set size (KB) = 1063360 + 0: The total amount of wall time = 1153.247017 + 0: The maximum resident set size (KB) = 1053696 Test 146 regional_atmaq PASS REGRESSION TEST WAS SUCCESSFUL -Fri Nov 11 07:30:38 GMT 2022 -Elapsed time: 02h:12m:11s. Have a nice day! +Wed Nov 16 02:10:38 GMT 2022 +Elapsed time: 02h:23m:53s. Have a nice day! diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index 772c2fdd6a..916cba9204 100644 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,34 +1,34 @@ -Fri Nov 11 11:32:23 CST 2022 +Tue Nov 15 18:01:49 CST 2022 Start Regression test -Compile 001 elapsed time 771 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 621 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 347 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 004 elapsed time 251 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 578 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 006 elapsed time 576 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 007 elapsed time 523 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 008 elapsed time 545 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 009 elapsed time 511 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 511 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 787 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 012 elapsed time 189 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 013 elapsed time 370 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 014 elapsed time 372 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 015 elapsed time 235 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 235 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 017 elapsed time 669 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 018 elapsed time 669 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 019 elapsed time 203 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 020 elapsed time 127 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 021 elapsed time 59 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 022 elapsed time 448 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 552 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 024 elapsed time 383 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 025 elapsed time 371 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 001 elapsed time 661 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 576 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 230 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 004 elapsed time 217 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 455 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 006 elapsed time 455 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 007 elapsed time 405 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 008 elapsed time 449 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 009 elapsed time 432 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 386 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 722 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 012 elapsed time 227 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 013 elapsed time 387 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 elapsed time 387 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 015 elapsed time 162 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 201 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 017 elapsed time 652 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 018 elapsed time 652 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 019 elapsed time 194 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 020 elapsed time 123 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 021 elapsed time 80 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 022 elapsed time 432 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 543 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 024 elapsed time 376 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 025 elapsed time 336 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/cpld_control_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/cpld_control_p8 Checking test 001 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -93,14 +93,14 @@ Checking test 001 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 342.822804 - 0: The maximum resident set size (KB) = 3179624 + 0: The total amount of wall time = 345.844649 + 0: The maximum resident set size (KB) = 3174548 Test 001 cpld_control_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/cpld_restart_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/cpld_restart_p8 Checking test 002 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -153,14 +153,14 @@ Checking test 002 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 201.725438 - 0: The maximum resident set size (KB) = 3051512 + 0: The total amount of wall time = 201.834944 + 0: The maximum resident set size (KB) = 3055772 Test 002 cpld_restart_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/cpld_2threads_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/cpld_2threads_p8 Checking test 003 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -213,14 +213,14 @@ Checking test 003 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 426.285212 - 0: The maximum resident set size (KB) = 3454648 + 0: The total amount of wall time = 419.478219 + 0: The maximum resident set size (KB) = 3451736 Test 003 cpld_2threads_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/cpld_esmfthreads_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/cpld_esmfthreads_p8 Checking test 004 cpld_esmfthreads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -273,14 +273,14 @@ Checking test 004 cpld_esmfthreads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 404.121142 - 0: The maximum resident set size (KB) = 3522660 + 0: The total amount of wall time = 406.441712 + 0: The maximum resident set size (KB) = 3521628 Test 004 cpld_esmfthreads_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/cpld_decomp_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/cpld_decomp_p8 Checking test 005 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -333,14 +333,14 @@ Checking test 005 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 340.187110 - 0: The maximum resident set size (KB) = 3165160 + 0: The total amount of wall time = 344.222774 + 0: The maximum resident set size (KB) = 3169564 Test 005 cpld_decomp_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/cpld_mpi_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/cpld_mpi_p8 Checking test 006 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -393,14 +393,14 @@ Checking test 006 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 279.310705 - 0: The maximum resident set size (KB) = 3029560 + 0: The total amount of wall time = 284.437004 + 0: The maximum resident set size (KB) = 3028888 Test 006 cpld_mpi_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/cpld_control_ciceC_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/cpld_control_ciceC_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/cpld_control_ciceC_p8 Checking test 007 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -465,14 +465,14 @@ Checking test 007 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 345.425252 - 0: The maximum resident set size (KB) = 3177400 + 0: The total amount of wall time = 346.123105 + 0: The maximum resident set size (KB) = 3175048 Test 007 cpld_control_ciceC_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/cpld_control_c192_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/cpld_control_c192_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/cpld_control_c192_p8 Checking test 008 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -525,14 +525,14 @@ Checking test 008 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 661.143833 - 0: The maximum resident set size (KB) = 3226004 + 0: The total amount of wall time = 655.349226 + 0: The maximum resident set size (KB) = 3225988 Test 008 cpld_control_c192_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/cpld_control_c192_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/cpld_restart_c192_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/cpld_restart_c192_p8 Checking test 009 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -585,14 +585,14 @@ Checking test 009 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 427.704794 - 0: The maximum resident set size (KB) = 3113376 + 0: The total amount of wall time = 426.976371 + 0: The maximum resident set size (KB) = 3146396 Test 009 cpld_restart_c192_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/cpld_bmark_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/cpld_bmark_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/cpld_bmark_p8 Checking test 010 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -640,14 +640,14 @@ Checking test 010 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 865.197105 - 0: The maximum resident set size (KB) = 3999884 + 0: The total amount of wall time = 873.742192 + 0: The maximum resident set size (KB) = 4038272 Test 010 cpld_bmark_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/cpld_bmark_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/cpld_restart_bmark_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/cpld_restart_bmark_p8 Checking test 011 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -695,70 +695,15 @@ Checking test 011 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 516.708629 - 0: The maximum resident set size (KB) = 3947632 + 0: The total amount of wall time = 541.626636 + 0: The maximum resident set size (KB) = 3967968 Test 011 cpld_restart_bmark_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/cpld_bmark_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/cpld_bmark_esmfthreads_p8 -Checking test 012 cpld_bmark_esmfthreads_p8 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/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/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 = 868.882328 - 0: The maximum resident set size (KB) = 4038084 - -Test 012 cpld_bmark_esmfthreads_p8 PASS - - baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/cpld_control_noaero_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/cpld_control_noaero_p8 -Checking test 013 cpld_control_noaero_p8 results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/cpld_control_noaero_p8 +Checking test 012 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -821,15 +766,15 @@ Checking test 013 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 228.946344 - 0: The maximum resident set size (KB) = 1727348 + 0: The total amount of wall time = 230.117245 + 0: The maximum resident set size (KB) = 1727700 -Test 013 cpld_control_noaero_p8 PASS +Test 012 cpld_control_noaero_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/cpld_control_c96_noaero_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/cpld_control_nowave_noaero_p8 -Checking test 014 cpld_control_nowave_noaero_p8 results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/cpld_control_nowave_noaero_p8 +Checking test 013 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -890,15 +835,15 @@ Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 254.229527 - 0: The maximum resident set size (KB) = 1757864 + 0: The total amount of wall time = 253.517573 + 0: The maximum resident set size (KB) = 1767708 -Test 014 cpld_control_nowave_noaero_p8 PASS +Test 013 cpld_control_nowave_noaero_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/cpld_debug_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/cpld_debug_p8 -Checking test 015 cpld_debug_p8 results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/cpld_debug_p8 +Checking test 014 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK Comparing sfcf003.tile3.nc .........OK @@ -950,15 +895,15 @@ Checking test 015 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 682.388513 - 0: The maximum resident set size (KB) = 3245224 + 0: The total amount of wall time = 684.841670 + 0: The maximum resident set size (KB) = 3247200 -Test 015 cpld_debug_p8 PASS +Test 014 cpld_debug_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/cpld_debug_noaero_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/cpld_debug_noaero_p8 -Checking test 016 cpld_debug_noaero_p8 results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/cpld_debug_noaero_p8 +Checking test 015 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK Comparing sfcf003.tile3.nc .........OK @@ -1009,15 +954,15 @@ Checking test 016 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 418.992432 - 0: The maximum resident set size (KB) = 1752456 + 0: The total amount of wall time = 430.185072 + 0: The maximum resident set size (KB) = 1758136 -Test 016 cpld_debug_noaero_p8 PASS +Test 015 cpld_debug_noaero_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/cpld_control_noaero_p8_agrid -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/cpld_control_noaero_p8_agrid -Checking test 017 cpld_control_noaero_p8_agrid results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/cpld_control_noaero_p8_agrid +Checking test 016 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -1078,15 +1023,15 @@ Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 260.828738 - 0: The maximum resident set size (KB) = 1760140 + 0: The total amount of wall time = 260.397670 + 0: The maximum resident set size (KB) = 1770524 -Test 017 cpld_control_noaero_p8_agrid PASS +Test 016 cpld_control_noaero_p8_agrid PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/cpld_control_c48 -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/cpld_control_c48 -Checking test 018 cpld_control_c48 results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/cpld_control_c48 +Checking test 017 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -1135,15 +1080,15 @@ Checking test 018 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 500.271255 - 0: The maximum resident set size (KB) = 2798396 + 0: The total amount of wall time = 500.897915 + 0: The maximum resident set size (KB) = 2794892 -Test 018 cpld_control_c48 PASS +Test 017 cpld_control_c48 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/cpld_warmstart_c48 -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/cpld_warmstart_c48 -Checking test 019 cpld_warmstart_c48 results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/cpld_warmstart_c48 +Checking test 018 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK Comparing sfcf006.tile3.nc .........OK @@ -1192,15 +1137,15 @@ Checking test 019 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 137.130239 - 0: The maximum resident set size (KB) = 2800592 + 0: The total amount of wall time = 140.302187 + 0: The maximum resident set size (KB) = 2799944 -Test 019 cpld_warmstart_c48 PASS +Test 018 cpld_warmstart_c48 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/cpld_warmstart_c48 -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/cpld_restart_c48 -Checking test 020 cpld_restart_c48 results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/cpld_restart_c48 +Checking test 019 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK Comparing sfcf006.tile3.nc .........OK @@ -1249,15 +1194,15 @@ Checking test 020 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 73.533193 - 0: The maximum resident set size (KB) = 2243968 + 0: The total amount of wall time = 70.562089 + 0: The maximum resident set size (KB) = 2243000 -Test 020 cpld_restart_c48 PASS +Test 019 cpld_restart_c48 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/control -Checking test 021 control results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/control +Checking test 020 control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1303,15 +1248,15 @@ Checking test 021 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 134.314504 - 0: The maximum resident set size (KB) = 636136 + 0: The total amount of wall time = 134.232066 + 0: The maximum resident set size (KB) = 635656 -Test 021 control PASS +Test 020 control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/control_decomp -Checking test 022 control_decomp results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/control_decomp +Checking test 021 control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1353,15 +1298,15 @@ Checking test 022 control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 140.881958 - 0: The maximum resident set size (KB) = 605372 + 0: The total amount of wall time = 140.106963 + 0: The maximum resident set size (KB) = 625216 -Test 022 control_decomp PASS +Test 021 control_decomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/control_2dwrtdecomp -Checking test 023 control_2dwrtdecomp results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/control_2dwrtdecomp +Checking test 022 control_2dwrtdecomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1371,15 +1316,15 @@ Checking test 023 control_2dwrtdecomp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 136.474962 - 0: The maximum resident set size (KB) = 637632 + 0: The total amount of wall time = 132.929858 + 0: The maximum resident set size (KB) = 633448 -Test 023 control_2dwrtdecomp PASS +Test 022 control_2dwrtdecomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/control_2threads -Checking test 024 control_2threads results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/control_2threads +Checking test 023 control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1421,15 +1366,15 @@ Checking test 024 control_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 171.123172 - 0: The maximum resident set size (KB) = 672588 + 0: The total amount of wall time = 162.475500 + 0: The maximum resident set size (KB) = 673596 -Test 024 control_2threads PASS +Test 023 control_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/control_restart -Checking test 025 control_restart results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/control_restart +Checking test 024 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1467,15 +1412,15 @@ Checking test 025 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 70.910996 - 0: The maximum resident set size (KB) = 465324 + 0: The total amount of wall time = 69.591676 + 0: The maximum resident set size (KB) = 473600 -Test 025 control_restart PASS +Test 024 control_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/control_fhzero -Checking test 026 control_fhzero results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/control_fhzero +Checking test 025 control_fhzero results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK @@ -1517,15 +1462,15 @@ Checking test 026 control_fhzero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 126.285043 - 0: The maximum resident set size (KB) = 635888 + 0: The total amount of wall time = 126.331728 + 0: The maximum resident set size (KB) = 631348 -Test 026 control_fhzero PASS +Test 025 control_fhzero PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_CubedSphereGrid -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/control_CubedSphereGrid -Checking test 027 control_CubedSphereGrid results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/control_CubedSphereGrid +Checking test 026 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -1551,29 +1496,29 @@ Checking test 027 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 199.883075 - 0: The maximum resident set size (KB) = 636088 + 0: The total amount of wall time = 129.479125 + 0: The maximum resident set size (KB) = 637096 -Test 027 control_CubedSphereGrid PASS +Test 026 control_CubedSphereGrid PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_CubedSphereGrid_parallel -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/control_CubedSphereGrid_parallel -Checking test 028 control_CubedSphereGrid_parallel results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/control_CubedSphereGrid_parallel +Checking test 027 control_CubedSphereGrid_parallel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 128.747216 - 0: The maximum resident set size (KB) = 639888 + 0: The total amount of wall time = 126.103604 + 0: The maximum resident set size (KB) = 636312 -Test 028 control_CubedSphereGrid_parallel PASS +Test 027 control_CubedSphereGrid_parallel PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_latlon -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/control_latlon -Checking test 029 control_latlon results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/control_latlon +Checking test 028 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1583,15 +1528,15 @@ Checking test 029 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 134.595766 - 0: The maximum resident set size (KB) = 636336 + 0: The total amount of wall time = 133.936430 + 0: The maximum resident set size (KB) = 634008 -Test 029 control_latlon PASS +Test 028 control_latlon PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_wrtGauss_netcdf_parallel -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/control_wrtGauss_netcdf_parallel -Checking test 030 control_wrtGauss_netcdf_parallel results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/control_wrtGauss_netcdf_parallel +Checking test 029 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1601,15 +1546,15 @@ Checking test 030 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 135.223839 - 0: The maximum resident set size (KB) = 635044 + 0: The total amount of wall time = 135.510310 + 0: The maximum resident set size (KB) = 633956 -Test 030 control_wrtGauss_netcdf_parallel PASS +Test 029 control_wrtGauss_netcdf_parallel PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_c48 -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/control_c48 -Checking test 031 control_c48 results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/control_c48 +Checking test 030 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1647,15 +1592,15 @@ Checking test 031 control_c48 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0: The total amount of wall time = 345.182755 -0: The maximum resident set size (KB) = 822580 +0: The total amount of wall time = 343.732084 +0: The maximum resident set size (KB) = 822352 -Test 031 control_c48 PASS +Test 030 control_c48 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_c192 -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/control_c192 -Checking test 032 control_c192 results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/control_c192 +Checking test 031 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1665,15 +1610,15 @@ Checking test 032 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 527.293348 - 0: The maximum resident set size (KB) = 765832 + 0: The total amount of wall time = 520.416629 + 0: The maximum resident set size (KB) = 767568 -Test 032 control_c192 PASS +Test 031 control_c192 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_c384 -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/control_c384 -Checking test 033 control_c384 results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/control_c384 +Checking test 032 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1683,15 +1628,15 @@ Checking test 033 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 813.871624 - 0: The maximum resident set size (KB) = 1084444 + 0: The total amount of wall time = 723.798125 + 0: The maximum resident set size (KB) = 1096016 -Test 033 control_c384 PASS +Test 032 control_c384 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_c384gdas -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/control_c384gdas -Checking test 034 control_c384gdas results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/control_c384gdas +Checking test 033 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK Comparing atmf000.nc .........OK @@ -1733,15 +1678,15 @@ Checking test 034 control_c384gdas results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 615.270817 - 0: The maximum resident set size (KB) = 1248048 + 0: The total amount of wall time = 577.392034 + 0: The maximum resident set size (KB) = 1249264 -Test 034 control_c384gdas PASS +Test 033 control_c384gdas PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_c384_progsigma -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/control_c384_progsigma -Checking test 035 control_c384_progsigma results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/control_c384_progsigma +Checking test 034 control_c384_progsigma results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1751,15 +1696,15 @@ Checking test 035 control_c384_progsigma results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 707.545042 - 0: The maximum resident set size (KB) = 1080208 + 0: The total amount of wall time = 706.301887 + 0: The maximum resident set size (KB) = 1088588 -Test 035 control_c384_progsigma PASS +Test 034 control_c384_progsigma PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_stochy -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/control_stochy -Checking test 036 control_stochy results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/control_stochy +Checking test 035 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1769,29 +1714,29 @@ Checking test 036 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 87.348722 - 0: The maximum resident set size (KB) = 613036 + 0: The total amount of wall time = 86.096847 + 0: The maximum resident set size (KB) = 642328 -Test 036 control_stochy PASS +Test 035 control_stochy PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_stochy -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/control_stochy_restart -Checking test 037 control_stochy_restart results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/control_stochy_restart +Checking test 036 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 47.385788 - 0: The maximum resident set size (KB) = 495336 + 0: The total amount of wall time = 46.206926 + 0: The maximum resident set size (KB) = 486624 -Test 037 control_stochy_restart PASS +Test 036 control_stochy_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_lndp -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/control_lndp -Checking test 038 control_lndp results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/control_lndp +Checking test 037 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1801,15 +1746,15 @@ Checking test 038 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 79.767354 - 0: The maximum resident set size (KB) = 633444 + 0: The total amount of wall time = 79.889582 + 0: The maximum resident set size (KB) = 639864 -Test 038 control_lndp PASS +Test 037 control_lndp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_iovr4 -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/control_iovr4 -Checking test 039 control_iovr4 results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/control_iovr4 +Checking test 038 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1823,15 +1768,15 @@ Checking test 039 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 135.567622 - 0: The maximum resident set size (KB) = 634080 + 0: The total amount of wall time = 133.792899 + 0: The maximum resident set size (KB) = 637928 -Test 039 control_iovr4 PASS +Test 038 control_iovr4 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_iovr5 -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/control_iovr5 -Checking test 040 control_iovr5 results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/control_iovr5 +Checking test 039 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1845,15 +1790,15 @@ Checking test 040 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 133.853997 - 0: The maximum resident set size (KB) = 636128 + 0: The total amount of wall time = 135.524503 + 0: The maximum resident set size (KB) = 638180 -Test 040 control_iovr5 PASS +Test 039 control_iovr5 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/control_p8 -Checking test 041 control_p8 results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/control_p8 +Checking test 040 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1899,15 +1844,15 @@ Checking test 041 control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 165.529037 - 0: The maximum resident set size (KB) = 1609436 + 0: The total amount of wall time = 166.376003 + 0: The maximum resident set size (KB) = 1606052 -Test 041 control_p8 PASS +Test 040 control_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_p8_lndp -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/control_p8_lndp -Checking test 042 control_p8_lndp results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/control_p8_lndp +Checking test 041 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1925,15 +1870,15 @@ Checking test 042 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 310.475932 - 0: The maximum resident set size (KB) = 1613856 + 0: The total amount of wall time = 312.204435 + 0: The maximum resident set size (KB) = 1608700 -Test 042 control_p8_lndp PASS +Test 041 control_p8_lndp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/control_restart_p8 -Checking test 043 control_restart_p8 results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/control_restart_p8 +Checking test 042 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1971,15 +1916,15 @@ Checking test 043 control_restart_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 87.942239 - 0: The maximum resident set size (KB) = 867824 + 0: The total amount of wall time = 86.402952 + 0: The maximum resident set size (KB) = 879124 -Test 043 control_restart_p8 PASS +Test 042 control_restart_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/control_decomp_p8 -Checking test 044 control_decomp_p8 results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/control_decomp_p8 +Checking test 043 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2021,15 +1966,15 @@ Checking test 044 control_decomp_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 174.519229 - 0: The maximum resident set size (KB) = 1595408 + 0: The total amount of wall time = 175.466154 + 0: The maximum resident set size (KB) = 1597144 -Test 044 control_decomp_p8 PASS +Test 043 control_decomp_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/control_2threads_p8 -Checking test 045 control_2threads_p8 results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/control_2threads_p8 +Checking test 044 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2071,15 +2016,15 @@ Checking test 045 control_2threads_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 200.074245 - 0: The maximum resident set size (KB) = 1675164 + 0: The total amount of wall time = 197.945251 + 0: The maximum resident set size (KB) = 1681712 -Test 045 control_2threads_p8 PASS +Test 044 control_2threads_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_p8_rrtmgp -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/control_p8_rrtmgp -Checking test 046 control_p8_rrtmgp results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/control_p8_rrtmgp +Checking test 045 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2125,15 +2070,15 @@ Checking test 046 control_p8_rrtmgp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 203.156518 - 0: The maximum resident set size (KB) = 1729768 + 0: The total amount of wall time = 199.862061 + 0: The maximum resident set size (KB) = 1740648 -Test 046 control_p8_rrtmgp PASS +Test 045 control_p8_rrtmgp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/merra2_thompson -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/merra2_thompson -Checking test 047 merra2_thompson results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/merra2_thompson +Checking test 046 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2179,15 +2124,15 @@ Checking test 047 merra2_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 170.634078 - 0: The maximum resident set size (KB) = 1613776 + 0: The total amount of wall time = 170.295954 + 0: The maximum resident set size (KB) = 1618608 -Test 047 merra2_thompson PASS +Test 046 merra2_thompson PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/regional_control -Checking test 048 regional_control results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/regional_control +Checking test 047 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2197,29 +2142,29 @@ Checking test 048 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 293.844285 - 0: The maximum resident set size (KB) = 868356 + 0: The total amount of wall time = 292.536164 + 0: The maximum resident set size (KB) = 870056 -Test 048 regional_control PASS +Test 047 regional_control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/regional_restart -Checking test 049 regional_restart results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/regional_restart +Checking test 048 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 148.632543 - 0: The maximum resident set size (KB) = 864624 + 0: The total amount of wall time = 148.625030 + 0: The maximum resident set size (KB) = 862064 -Test 049 regional_restart PASS +Test 048 regional_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/regional_decomp -Checking test 050 regional_decomp results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/regional_decomp +Checking test 049 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2229,15 +2174,15 @@ Checking test 050 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 311.068128 - 0: The maximum resident set size (KB) = 858480 + 0: The total amount of wall time = 312.501644 + 0: The maximum resident set size (KB) = 862220 -Test 050 regional_decomp PASS +Test 049 regional_decomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/regional_2threads -Checking test 051 regional_2threads results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/regional_2threads +Checking test 050 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2247,44 +2192,44 @@ Checking test 051 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 226.378494 - 0: The maximum resident set size (KB) = 839796 + 0: The total amount of wall time = 224.093786 + 0: The maximum resident set size (KB) = 836568 -Test 051 regional_2threads PASS +Test 050 regional_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/regional_noquilt -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/regional_noquilt -Checking test 052 regional_noquilt results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/regional_noquilt +Checking test 051 regional_noquilt 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 = 316.930213 - 0: The maximum resident set size (KB) = 861960 + 0: The total amount of wall time = 315.822376 + 0: The maximum resident set size (KB) = 862844 -Test 052 regional_noquilt PASS +Test 051 regional_noquilt PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/regional_netcdf_parallel -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/regional_netcdf_parallel -Checking test 053 regional_netcdf_parallel results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/regional_netcdf_parallel +Checking test 052 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK + Comparing phyf000.nc ............ALT CHECK......OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 287.686552 - 0: The maximum resident set size (KB) = 859156 + 0: The total amount of wall time = 288.824458 + 0: The maximum resident set size (KB) = 858900 -Test 053 regional_netcdf_parallel PASS +Test 052 regional_netcdf_parallel PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/regional_2dwrtdecomp -Checking test 054 regional_2dwrtdecomp results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/regional_2dwrtdecomp +Checking test 053 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2294,15 +2239,15 @@ Checking test 054 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 292.732408 - 0: The maximum resident set size (KB) = 872420 + 0: The total amount of wall time = 291.888900 + 0: The maximum resident set size (KB) = 868460 -Test 054 regional_2dwrtdecomp PASS +Test 053 regional_2dwrtdecomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/fv3_regional_wofs -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/regional_wofs -Checking test 055 regional_wofs results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/regional_wofs +Checking test 054 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2312,15 +2257,15 @@ Checking test 055 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 371.560886 - 0: The maximum resident set size (KB) = 625852 + 0: The total amount of wall time = 371.315758 + 0: The maximum resident set size (KB) = 628596 -Test 055 regional_wofs PASS +Test 054 regional_wofs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_control -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/rap_control -Checking test 056 rap_control results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/rap_control +Checking test 055 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2366,15 +2311,15 @@ Checking test 056 rap_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 440.191926 - 0: The maximum resident set size (KB) = 1054312 + 0: The total amount of wall time = 441.555361 + 0: The maximum resident set size (KB) = 1050436 -Test 056 rap_control PASS +Test 055 rap_control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_rrtmgp -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/rap_rrtmgp -Checking test 057 rap_rrtmgp results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/rap_rrtmgp +Checking test 056 rap_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2420,15 +2365,15 @@ Checking test 057 rap_rrtmgp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 468.088168 - 0: The maximum resident set size (KB) = 1209564 + 0: The total amount of wall time = 467.881519 + 0: The maximum resident set size (KB) = 1208220 -Test 057 rap_rrtmgp PASS +Test 056 rap_rrtmgp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/regional_spp_sppt_shum_skeb -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/regional_spp_sppt_shum_skeb -Checking test 058 regional_spp_sppt_shum_skeb results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/regional_spp_sppt_shum_skeb +Checking test 057 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -2438,15 +2383,15 @@ Checking test 058 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 291.376356 - 0: The maximum resident set size (KB) = 1178572 + 0: The total amount of wall time = 289.582692 + 0: The maximum resident set size (KB) = 1180312 -Test 058 regional_spp_sppt_shum_skeb PASS +Test 057 regional_spp_sppt_shum_skeb PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_control -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/rap_decomp -Checking test 059 rap_decomp results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/rap_decomp +Checking test 058 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2492,15 +2437,15 @@ Checking test 059 rap_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 461.596103 - 0: The maximum resident set size (KB) = 1005284 + 0: The total amount of wall time = 461.066851 + 0: The maximum resident set size (KB) = 1001472 -Test 059 rap_decomp PASS +Test 058 rap_decomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_control -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/rap_2threads -Checking test 060 rap_2threads results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/rap_2threads +Checking test 059 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2546,15 +2491,15 @@ Checking test 060 rap_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 509.269646 - 0: The maximum resident set size (KB) = 1067028 + 0: The total amount of wall time = 503.200839 + 0: The maximum resident set size (KB) = 1068312 -Test 060 rap_2threads PASS +Test 059 rap_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_control -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/rap_restart -Checking test 061 rap_restart results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/rap_restart +Checking test 060 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2592,15 +2537,15 @@ Checking test 061 rap_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 224.239694 - 0: The maximum resident set size (KB) = 970448 + 0: The total amount of wall time = 224.098317 + 0: The maximum resident set size (KB) = 967752 -Test 061 rap_restart PASS +Test 060 rap_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_sfcdiff -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/rap_sfcdiff -Checking test 062 rap_sfcdiff results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/rap_sfcdiff +Checking test 061 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2646,15 +2591,15 @@ Checking test 062 rap_sfcdiff results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 434.062653 - 0: The maximum resident set size (KB) = 1063824 + 0: The total amount of wall time = 434.183626 + 0: The maximum resident set size (KB) = 1056804 -Test 062 rap_sfcdiff PASS +Test 061 rap_sfcdiff PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_sfcdiff -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/rap_sfcdiff_decomp -Checking test 063 rap_sfcdiff_decomp results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/rap_sfcdiff_decomp +Checking test 062 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2700,15 +2645,15 @@ Checking test 063 rap_sfcdiff_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 459.161509 - 0: The maximum resident set size (KB) = 1002028 + 0: The total amount of wall time = 460.924612 + 0: The maximum resident set size (KB) = 998940 -Test 063 rap_sfcdiff_decomp PASS +Test 062 rap_sfcdiff_decomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_sfcdiff -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/rap_sfcdiff_restart -Checking test 064 rap_sfcdiff_restart results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/rap_sfcdiff_restart +Checking test 063 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2746,15 +2691,15 @@ Checking test 064 rap_sfcdiff_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 327.591026 - 0: The maximum resident set size (KB) = 976336 + 0: The total amount of wall time = 327.415042 + 0: The maximum resident set size (KB) = 986768 -Test 064 rap_sfcdiff_restart PASS +Test 063 rap_sfcdiff_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/hrrr_control -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/hrrr_control -Checking test 065 hrrr_control results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/hrrr_control +Checking test 064 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2800,15 +2745,15 @@ Checking test 065 hrrr_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 418.567122 - 0: The maximum resident set size (KB) = 1048432 + 0: The total amount of wall time = 420.485531 + 0: The maximum resident set size (KB) = 1044568 -Test 065 hrrr_control PASS +Test 064 hrrr_control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/hrrr_control -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/hrrr_control_decomp -Checking test 066 hrrr_control_decomp results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/hrrr_control_decomp +Checking test 065 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2854,15 +2799,15 @@ Checking test 066 hrrr_control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 445.244187 - 0: The maximum resident set size (KB) = 1000416 + 0: The total amount of wall time = 441.434991 + 0: The maximum resident set size (KB) = 996624 -Test 066 hrrr_control_decomp PASS +Test 065 hrrr_control_decomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/hrrr_control -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/hrrr_control_2threads -Checking test 067 hrrr_control_2threads results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/hrrr_control_2threads +Checking test 066 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2908,15 +2853,15 @@ Checking test 067 hrrr_control_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 483.684829 - 0: The maximum resident set size (KB) = 1058472 + 0: The total amount of wall time = 475.316731 + 0: The maximum resident set size (KB) = 1062008 -Test 067 hrrr_control_2threads PASS +Test 066 hrrr_control_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/hrrr_control -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/hrrr_control_restart -Checking test 068 hrrr_control_restart results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/hrrr_control_restart +Checking test 067 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2954,15 +2899,15 @@ Checking test 068 hrrr_control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 317.131674 - 0: The maximum resident set size (KB) = 977120 + 0: The total amount of wall time = 317.097766 + 0: The maximum resident set size (KB) = 979744 -Test 068 hrrr_control_restart PASS +Test 067 hrrr_control_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rrfs_v1beta -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/rrfs_v1beta -Checking test 069 rrfs_v1beta results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/rrfs_v1beta +Checking test 068 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3008,15 +2953,15 @@ Checking test 069 rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 428.946047 - 0: The maximum resident set size (KB) = 1054228 + 0: The total amount of wall time = 429.706298 + 0: The maximum resident set size (KB) = 1048704 -Test 069 rrfs_v1beta PASS +Test 068 rrfs_v1beta PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rrfs_v1nssl -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/rrfs_v1nssl -Checking test 070 rrfs_v1nssl results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/rrfs_v1nssl +Checking test 069 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3030,15 +2975,15 @@ Checking test 070 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 512.057628 - 0: The maximum resident set size (KB) = 686788 + 0: The total amount of wall time = 513.592338 + 0: The maximum resident set size (KB) = 686204 -Test 070 rrfs_v1nssl PASS +Test 069 rrfs_v1nssl PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/rrfs_v1nssl_nohailnoccn -Checking test 071 rrfs_v1nssl_nohailnoccn results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/rrfs_v1nssl_nohailnoccn +Checking test 070 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3052,15 +2997,15 @@ Checking test 071 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 499.978773 - 0: The maximum resident set size (KB) = 753340 + 0: The total amount of wall time = 501.241879 + 0: The maximum resident set size (KB) = 755584 -Test 071 rrfs_v1nssl_nohailnoccn PASS +Test 070 rrfs_v1nssl_nohailnoccn PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rrfs_conus13km_hrrr_warm -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/rrfs_conus13km_hrrr_warm -Checking test 072 rrfs_conus13km_hrrr_warm results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/rrfs_conus13km_hrrr_warm +Checking test 071 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -3068,15 +3013,15 @@ Checking test 072 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 121.451805 - 0: The maximum resident set size (KB) = 928788 + 0: The total amount of wall time = 122.656566 + 0: The maximum resident set size (KB) = 930484 -Test 072 rrfs_conus13km_hrrr_warm PASS +Test 071 rrfs_conus13km_hrrr_warm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/rrfs_smoke_conus13km_hrrr_warm -Checking test 073 rrfs_smoke_conus13km_hrrr_warm results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/rrfs_smoke_conus13km_hrrr_warm +Checking test 072 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -3084,15 +3029,15 @@ Checking test 073 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 137.613874 - 0: The maximum resident set size (KB) = 946076 + 0: The total amount of wall time = 139.036710 + 0: The maximum resident set size (KB) = 953148 -Test 073 rrfs_smoke_conus13km_hrrr_warm PASS +Test 072 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/rrfs_conus13km_radar_tten_warm -Checking test 074 rrfs_conus13km_radar_tten_warm results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/rrfs_conus13km_radar_tten_warm +Checking test 073 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -3100,15 +3045,15 @@ Checking test 074 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 122.591874 - 0: The maximum resident set size (KB) = 935268 + 0: The total amount of wall time = 124.171467 + 0: The maximum resident set size (KB) = 932560 -Test 074 rrfs_conus13km_radar_tten_warm PASS +Test 073 rrfs_conus13km_radar_tten_warm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rrfs_conus13km_hrrr_warm -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/rrfs_conus13km_hrrr_warm_2threads -Checking test 075 rrfs_conus13km_hrrr_warm_2threads results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/rrfs_conus13km_hrrr_warm_2threads +Checking test 074 rrfs_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -3116,15 +3061,15 @@ Checking test 075 rrfs_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 92.087125 - 0: The maximum resident set size (KB) = 897080 + 0: The total amount of wall time = 90.567337 + 0: The maximum resident set size (KB) = 900064 -Test 075 rrfs_conus13km_hrrr_warm_2threads PASS +Test 074 rrfs_conus13km_hrrr_warm_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/rrfs_conus13km_radar_tten_warm_2threads -Checking test 076 rrfs_conus13km_radar_tten_warm_2threads results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/rrfs_conus13km_radar_tten_warm_2threads +Checking test 075 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -3132,15 +3077,15 @@ Checking test 076 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 91.083632 - 0: The maximum resident set size (KB) = 902080 + 0: The total amount of wall time = 91.177836 + 0: The maximum resident set size (KB) = 901056 -Test 076 rrfs_conus13km_radar_tten_warm_2threads PASS +Test 075 rrfs_conus13km_radar_tten_warm_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_csawmg -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/control_csawmg -Checking test 077 control_csawmg results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/control_csawmg +Checking test 076 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3150,15 +3095,15 @@ Checking test 077 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 339.102868 - 0: The maximum resident set size (KB) = 729696 + 0: The total amount of wall time = 344.811276 + 0: The maximum resident set size (KB) = 726136 -Test 077 control_csawmg PASS +Test 076 control_csawmg PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_csawmgt -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/control_csawmgt -Checking test 078 control_csawmgt results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/control_csawmgt +Checking test 077 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3168,15 +3113,15 @@ Checking test 078 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 332.472895 - 0: The maximum resident set size (KB) = 734772 + 0: The total amount of wall time = 336.745214 + 0: The maximum resident set size (KB) = 731808 -Test 078 control_csawmgt PASS +Test 077 control_csawmgt PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_ras -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/control_ras -Checking test 079 control_ras results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/control_ras +Checking test 078 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3186,83 +3131,83 @@ Checking test 079 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 178.258921 - 0: The maximum resident set size (KB) = 720972 + 0: The total amount of wall time = 178.112690 + 0: The maximum resident set size (KB) = 711912 -Test 079 control_ras PASS +Test 078 control_ras PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_wam -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/control_wam -Checking test 080 control_wam results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/control_wam +Checking test 079 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 110.731279 - 0: The maximum resident set size (KB) = 641652 + 0: The total amount of wall time = 110.515981 + 0: The maximum resident set size (KB) = 636440 -Test 080 control_wam PASS +Test 079 control_wam PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/rrfs_conus13km_hrrr_warm_debug -Checking test 081 rrfs_conus13km_hrrr_warm_debug results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/rrfs_conus13km_hrrr_warm_debug +Checking test 080 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 752.197424 - 0: The maximum resident set size (KB) = 954640 + 0: The total amount of wall time = 730.069474 + 0: The maximum resident set size (KB) = 955240 -Test 081 rrfs_conus13km_hrrr_warm_debug PASS +Test 080 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rrfs_conus13km_radar_tten_warm_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/rrfs_conus13km_radar_tten_warm_debug -Checking test 082 rrfs_conus13km_radar_tten_warm_debug results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/rrfs_conus13km_radar_tten_warm_debug +Checking test 081 rrfs_conus13km_radar_tten_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 722.541399 - 0: The maximum resident set size (KB) = 954248 + 0: The total amount of wall time = 750.069131 + 0: The maximum resident set size (KB) = 962244 -Test 082 rrfs_conus13km_radar_tten_warm_debug PASS +Test 081 rrfs_conus13km_radar_tten_warm_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/control_debug -Checking test 083 control_debug results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/control_debug +Checking test 082 control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 156.793114 - 0: The maximum resident set size (KB) = 801652 + 0: The total amount of wall time = 160.566296 + 0: The maximum resident set size (KB) = 796896 -Test 083 control_debug PASS Tries: 2 +Test 082 control_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/control_2threads_debug -Checking test 084 control_2threads_debug results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/control_2threads_debug +Checking test 083 control_2threads_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 230.164689 - 0: The maximum resident set size (KB) = 840812 + 0: The total amount of wall time = 233.586201 + 0: The maximum resident set size (KB) = 835836 -Test 084 control_2threads_debug PASS +Test 083 control_2threads_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_CubedSphereGrid_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/control_CubedSphereGrid_debug -Checking test 085 control_CubedSphereGrid_debug results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/control_CubedSphereGrid_debug +Checking test 084 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -3288,349 +3233,349 @@ Checking test 085 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 173.081966 - 0: The maximum resident set size (KB) = 800036 + 0: The total amount of wall time = 173.953547 + 0: The maximum resident set size (KB) = 794000 -Test 085 control_CubedSphereGrid_debug PASS +Test 084 control_CubedSphereGrid_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/control_wrtGauss_netcdf_parallel_debug -Checking test 086 control_wrtGauss_netcdf_parallel_debug results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/control_wrtGauss_netcdf_parallel_debug +Checking test 085 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 164.192723 - 0: The maximum resident set size (KB) = 799188 + 0: The total amount of wall time = 162.373623 + 0: The maximum resident set size (KB) = 796272 -Test 086 control_wrtGauss_netcdf_parallel_debug PASS +Test 085 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_stochy_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/control_stochy_debug -Checking test 087 control_stochy_debug results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/control_stochy_debug +Checking test 086 control_stochy_debug 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.567310 - 0: The maximum resident set size (KB) = 807140 + 0: The total amount of wall time = 181.043417 + 0: The maximum resident set size (KB) = 797208 -Test 087 control_stochy_debug PASS +Test 086 control_stochy_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_lndp_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/control_lndp_debug -Checking test 088 control_lndp_debug results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/control_lndp_debug +Checking test 087 control_lndp_debug 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.810591 - 0: The maximum resident set size (KB) = 802916 + 0: The total amount of wall time = 160.698622 + 0: The maximum resident set size (KB) = 803920 -Test 088 control_lndp_debug PASS +Test 087 control_lndp_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_csawmg_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/control_csawmg_debug -Checking test 089 control_csawmg_debug results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/control_csawmg_debug +Checking test 088 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 243.708993 - 0: The maximum resident set size (KB) = 847848 + 0: The total amount of wall time = 238.186130 + 0: The maximum resident set size (KB) = 847056 -Test 089 control_csawmg_debug PASS +Test 088 control_csawmg_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_csawmgt_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/control_csawmgt_debug -Checking test 090 control_csawmgt_debug results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/control_csawmgt_debug +Checking test 089 control_csawmgt_debug 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.506024 - 0: The maximum resident set size (KB) = 849792 + 0: The total amount of wall time = 241.635474 + 0: The maximum resident set size (KB) = 847100 -Test 090 control_csawmgt_debug PASS +Test 089 control_csawmgt_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_ras_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/control_ras_debug -Checking test 091 control_ras_debug results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/control_ras_debug +Checking test 090 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 160.879842 - 0: The maximum resident set size (KB) = 811144 + 0: The total amount of wall time = 167.660742 + 0: The maximum resident set size (KB) = 805696 -Test 091 control_ras_debug PASS +Test 090 control_ras_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_diag_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/control_diag_debug -Checking test 092 control_diag_debug results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/control_diag_debug +Checking test 091 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 168.443960 - 0: The maximum resident set size (KB) = 864104 + 0: The total amount of wall time = 170.171737 + 0: The maximum resident set size (KB) = 853356 -Test 092 control_diag_debug PASS +Test 091 control_diag_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_debug_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/control_debug_p8 -Checking test 093 control_debug_p8 results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/control_debug_p8 +Checking test 092 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 180.240666 - 0: The maximum resident set size (KB) = 1618968 + 0: The total amount of wall time = 181.088013 + 0: The maximum resident set size (KB) = 1618908 -Test 093 control_debug_p8 PASS +Test 092 control_debug_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/regional_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/regional_debug -Checking test 094 regional_debug results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/regional_debug +Checking test 093 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 991.246775 - 0: The maximum resident set size (KB) = 881788 + 0: The total amount of wall time = 1010.481817 + 0: The maximum resident set size (KB) = 878988 -Test 094 regional_debug PASS +Test 093 regional_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_control_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/rap_control_debug -Checking test 095 rap_control_debug results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/rap_control_debug +Checking test 094 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 289.305620 - 0: The maximum resident set size (KB) = 1175420 + 0: The total amount of wall time = 284.652089 + 0: The maximum resident set size (KB) = 1175216 -Test 095 rap_control_debug PASS +Test 094 rap_control_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/hrrr_control_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/hrrr_control_debug -Checking test 096 hrrr_control_debug results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/hrrr_control_debug +Checking test 095 hrrr_control_debug 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.963129 - 0: The maximum resident set size (KB) = 1167828 + 0: The total amount of wall time = 277.750195 + 0: The maximum resident set size (KB) = 1171180 -Test 096 hrrr_control_debug PASS +Test 095 hrrr_control_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_control_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/rap_unified_drag_suite_debug -Checking test 097 rap_unified_drag_suite_debug results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/rap_unified_drag_suite_debug +Checking test 096 rap_unified_drag_suite_debug 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.107101 - 0: The maximum resident set size (KB) = 1177364 + 0: The total amount of wall time = 290.728067 + 0: The maximum resident set size (KB) = 1176536 -Test 097 rap_unified_drag_suite_debug PASS +Test 096 rap_unified_drag_suite_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_diag_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/rap_diag_debug -Checking test 098 rap_diag_debug results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/rap_diag_debug +Checking test 097 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 300.087925 - 0: The maximum resident set size (KB) = 1261456 + 0: The total amount of wall time = 302.975617 + 0: The maximum resident set size (KB) = 1258732 -Test 098 rap_diag_debug PASS +Test 097 rap_diag_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_cires_ugwp_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/rap_cires_ugwp_debug -Checking test 099 rap_cires_ugwp_debug results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/rap_cires_ugwp_debug +Checking test 098 rap_cires_ugwp_debug 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.223887 - 0: The maximum resident set size (KB) = 1175564 + 0: The total amount of wall time = 293.826595 + 0: The maximum resident set size (KB) = 1171068 -Test 099 rap_cires_ugwp_debug PASS +Test 098 rap_cires_ugwp_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_cires_ugwp_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/rap_unified_ugwp_debug -Checking test 100 rap_unified_ugwp_debug results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/rap_unified_ugwp_debug +Checking test 099 rap_unified_ugwp_debug 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.418334 - 0: The maximum resident set size (KB) = 1180096 + 0: The total amount of wall time = 289.658492 + 0: The maximum resident set size (KB) = 1174228 -Test 100 rap_unified_ugwp_debug PASS +Test 099 rap_unified_ugwp_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_lndp_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/rap_lndp_debug -Checking test 101 rap_lndp_debug results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/rap_lndp_debug +Checking test 100 rap_lndp_debug 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.940254 - 0: The maximum resident set size (KB) = 1182028 + 0: The total amount of wall time = 300.473950 + 0: The maximum resident set size (KB) = 1173248 -Test 101 rap_lndp_debug PASS +Test 100 rap_lndp_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_flake_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/rap_flake_debug -Checking test 102 rap_flake_debug results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/rap_flake_debug +Checking test 101 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 289.322011 - 0: The maximum resident set size (KB) = 1182752 + 0: The total amount of wall time = 288.605299 + 0: The maximum resident set size (KB) = 1174040 -Test 102 rap_flake_debug PASS +Test 101 rap_flake_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_progcld_thompson_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/rap_progcld_thompson_debug -Checking test 103 rap_progcld_thompson_debug results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/rap_progcld_thompson_debug +Checking test 102 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 284.124614 - 0: The maximum resident set size (KB) = 1174616 + 0: The total amount of wall time = 287.447308 + 0: The maximum resident set size (KB) = 1172660 -Test 103 rap_progcld_thompson_debug PASS +Test 102 rap_progcld_thompson_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_noah_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/rap_noah_debug -Checking test 104 rap_noah_debug results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/rap_noah_debug +Checking test 103 rap_noah_debug 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.098040 - 0: The maximum resident set size (KB) = 1178440 + 0: The total amount of wall time = 280.054053 + 0: The maximum resident set size (KB) = 1171156 -Test 104 rap_noah_debug PASS +Test 103 rap_noah_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_rrtmgp_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/rap_rrtmgp_debug -Checking test 105 rap_rrtmgp_debug results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/rap_rrtmgp_debug +Checking test 104 rap_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 479.881489 - 0: The maximum resident set size (KB) = 1307936 + 0: The total amount of wall time = 477.710715 + 0: The maximum resident set size (KB) = 1304808 -Test 105 rap_rrtmgp_debug PASS +Test 104 rap_rrtmgp_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_sfcdiff_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/rap_sfcdiff_debug -Checking test 106 rap_sfcdiff_debug results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/rap_sfcdiff_debug +Checking test 105 rap_sfcdiff_debug 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.329545 - 0: The maximum resident set size (KB) = 1175544 + 0: The total amount of wall time = 283.038012 + 0: The maximum resident set size (KB) = 1170536 -Test 106 rap_sfcdiff_debug PASS +Test 105 rap_sfcdiff_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/rap_noah_sfcdiff_cires_ugwp_debug -Checking test 107 rap_noah_sfcdiff_cires_ugwp_debug results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/rap_noah_sfcdiff_cires_ugwp_debug +Checking test 106 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 454.712674 - 0: The maximum resident set size (KB) = 1173468 + 0: The total amount of wall time = 470.882527 + 0: The maximum resident set size (KB) = 1170740 -Test 107 rap_noah_sfcdiff_cires_ugwp_debug PASS +Test 106 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rrfs_v1beta_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/rrfs_v1beta_debug -Checking test 108 rrfs_v1beta_debug results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/rrfs_v1beta_debug +Checking test 107 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 280.987552 - 0: The maximum resident set size (KB) = 1169596 + 0: The total amount of wall time = 286.994116 + 0: The maximum resident set size (KB) = 1170600 -Test 108 rrfs_v1beta_debug PASS +Test 107 rrfs_v1beta_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_wam_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/control_wam_debug -Checking test 109 control_wam_debug results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/control_wam_debug +Checking test 108 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 289.263722 - 0: The maximum resident set size (KB) = 524708 + 0: The total amount of wall time = 290.380462 + 0: The maximum resident set size (KB) = 526316 -Test 109 control_wam_debug PASS +Test 108 control_wam_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/regional_spp_sppt_shum_skeb_dyn32_phy32 -Checking test 110 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/regional_spp_sppt_shum_skeb_dyn32_phy32 +Checking test 109 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -3640,15 +3585,15 @@ Checking test 110 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 263.709730 - 0: The maximum resident set size (KB) = 1075400 + 0: The total amount of wall time = 268.019230 + 0: The maximum resident set size (KB) = 1076260 -Test 110 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS +Test 109 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/rap_control_dyn32_phy32 -Checking test 111 rap_control_dyn32_phy32 results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/rap_control_dyn32_phy32 +Checking test 110 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3694,15 +3639,15 @@ Checking test 111 rap_control_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 352.166139 - 0: The maximum resident set size (KB) = 1003808 + 0: The total amount of wall time = 351.809123 + 0: The maximum resident set size (KB) = 999328 -Test 111 rap_control_dyn32_phy32 PASS +Test 110 rap_control_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/hrrr_control_dyn32_phy32 -Checking test 112 hrrr_control_dyn32_phy32 results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/hrrr_control_dyn32_phy32 +Checking test 111 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3748,15 +3693,15 @@ Checking test 112 hrrr_control_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 185.562431 - 0: The maximum resident set size (KB) = 960492 + 0: The total amount of wall time = 184.959998 + 0: The maximum resident set size (KB) = 948928 -Test 112 hrrr_control_dyn32_phy32 PASS +Test 111 hrrr_control_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/rap_2threads_dyn32_phy32 -Checking test 113 rap_2threads_dyn32_phy32 results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/rap_2threads_dyn32_phy32 +Checking test 112 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3802,15 +3747,15 @@ Checking test 113 rap_2threads_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 415.421564 - 0: The maximum resident set size (KB) = 933396 + 0: The total amount of wall time = 417.653865 + 0: The maximum resident set size (KB) = 932596 -Test 113 rap_2threads_dyn32_phy32 PASS +Test 112 rap_2threads_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/hrrr_control_2threads_dyn32_phy32 -Checking test 114 hrrr_control_2threads_dyn32_phy32 results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/hrrr_control_2threads_dyn32_phy32 +Checking test 113 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3856,15 +3801,15 @@ Checking test 114 hrrr_control_2threads_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 214.560969 - 0: The maximum resident set size (KB) = 921116 + 0: The total amount of wall time = 211.657829 + 0: The maximum resident set size (KB) = 931344 -Test 114 hrrr_control_2threads_dyn32_phy32 PASS +Test 113 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/hrrr_control_decomp_dyn32_phy32 -Checking test 115 hrrr_control_decomp_dyn32_phy32 results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/hrrr_control_decomp_dyn32_phy32 +Checking test 114 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3910,15 +3855,15 @@ Checking test 115 hrrr_control_decomp_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 195.566796 - 0: The maximum resident set size (KB) = 904384 + 0: The total amount of wall time = 197.050567 + 0: The maximum resident set size (KB) = 896376 -Test 115 hrrr_control_decomp_dyn32_phy32 PASS +Test 114 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/rap_restart_dyn32_phy32 -Checking test 116 rap_restart_dyn32_phy32 results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/rap_restart_dyn32_phy32 +Checking test 115 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3956,15 +3901,15 @@ Checking test 116 rap_restart_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 268.987246 - 0: The maximum resident set size (KB) = 945188 + 0: The total amount of wall time = 266.786715 + 0: The maximum resident set size (KB) = 952588 -Test 116 rap_restart_dyn32_phy32 PASS +Test 115 rap_restart_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/hrrr_control_restart_dyn32_phy32 -Checking test 117 hrrr_control_restart_dyn32_phy32 results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/hrrr_control_restart_dyn32_phy32 +Checking test 116 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -4002,15 +3947,15 @@ Checking test 117 hrrr_control_restart_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 95.184168 - 0: The maximum resident set size (KB) = 861488 + 0: The total amount of wall time = 96.818971 + 0: The maximum resident set size (KB) = 866904 -Test 117 hrrr_control_restart_dyn32_phy32 PASS +Test 116 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_control_dyn64_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/rap_control_dyn64_phy32 -Checking test 118 rap_control_dyn64_phy32 results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/rap_control_dyn64_phy32 +Checking test 117 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4056,82 +4001,82 @@ Checking test 118 rap_control_dyn64_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 229.582878 - 0: The maximum resident set size (KB) = 969712 + 0: The total amount of wall time = 232.726590 + 0: The maximum resident set size (KB) = 968820 -Test 118 rap_control_dyn64_phy32 PASS +Test 117 rap_control_dyn64_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_control_debug_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/rap_control_debug_dyn32_phy32 -Checking test 119 rap_control_debug_dyn32_phy32 results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/rap_control_debug_dyn32_phy32 +Checking test 118 rap_control_debug_dyn32_phy32 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.346604 - 0: The maximum resident set size (KB) = 1059080 + 0: The total amount of wall time = 282.662019 + 0: The maximum resident set size (KB) = 1065428 -Test 119 rap_control_debug_dyn32_phy32 PASS +Test 118 rap_control_debug_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/hrrr_control_debug_dyn32_phy32 -Checking test 120 hrrr_control_debug_dyn32_phy32 results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/hrrr_control_debug_dyn32_phy32 +Checking test 119 hrrr_control_debug_dyn32_phy32 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.544142 - 0: The maximum resident set size (KB) = 1059904 + 0: The total amount of wall time = 277.978154 + 0: The maximum resident set size (KB) = 1057768 -Test 120 hrrr_control_debug_dyn32_phy32 PASS +Test 119 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_control_debug_dyn64_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/rap_control_dyn64_phy32_debug -Checking test 121 rap_control_dyn64_phy32_debug results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/rap_control_dyn64_phy32_debug +Checking test 120 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 288.580522 - 0: The maximum resident set size (KB) = 1096756 + 0: The total amount of wall time = 285.794745 + 0: The maximum resident set size (KB) = 1094072 -Test 121 rap_control_dyn64_phy32_debug PASS +Test 120 rap_control_dyn64_phy32_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/hafs_regional_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/hafs_regional_atm -Checking test 122 hafs_regional_atm results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/hafs_regional_atm +Checking test 121 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 304.466265 - 0: The maximum resident set size (KB) = 982076 + 0: The total amount of wall time = 305.787457 + 0: The maximum resident set size (KB) = 981676 -Test 122 hafs_regional_atm PASS +Test 121 hafs_regional_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/hafs_regional_atm_thompson_gfdlsf -Checking test 123 hafs_regional_atm_thompson_gfdlsf results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/hafs_regional_atm_thompson_gfdlsf +Checking test 122 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 404.364038 - 0: The maximum resident set size (KB) = 1352656 + 0: The total amount of wall time = 405.071082 + 0: The maximum resident set size (KB) = 1349064 -Test 123 hafs_regional_atm_thompson_gfdlsf PASS +Test 122 hafs_regional_atm_thompson_gfdlsf PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/hafs_regional_atm_ocn -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/hafs_regional_atm_ocn -Checking test 124 hafs_regional_atm_ocn results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/hafs_regional_atm_ocn +Checking test 123 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -4139,15 +4084,15 @@ Checking test 124 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 388.904260 - 0: The maximum resident set size (KB) = 1206604 + 0: The total amount of wall time = 391.244945 + 0: The maximum resident set size (KB) = 1208556 -Test 124 hafs_regional_atm_ocn PASS +Test 123 hafs_regional_atm_ocn PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/hafs_regional_atm_wav -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/hafs_regional_atm_wav -Checking test 125 hafs_regional_atm_wav results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/hafs_regional_atm_wav +Checking test 124 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing out_grd.ww3 .........OK @@ -4155,15 +4100,15 @@ Checking test 125 hafs_regional_atm_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 749.372285 - 0: The maximum resident set size (KB) = 1231644 + 0: The total amount of wall time = 711.894516 + 0: The maximum resident set size (KB) = 1226496 -Test 125 hafs_regional_atm_wav PASS +Test 124 hafs_regional_atm_wav PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/hafs_regional_atm_ocn_wav -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/hafs_regional_atm_ocn_wav -Checking test 126 hafs_regional_atm_ocn_wav results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/hafs_regional_atm_ocn_wav +Checking test 125 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -4173,29 +4118,29 @@ Checking test 126 hafs_regional_atm_ocn_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 809.526535 - 0: The maximum resident set size (KB) = 1245376 + 0: The total amount of wall time = 814.756620 + 0: The maximum resident set size (KB) = 1239616 -Test 126 hafs_regional_atm_ocn_wav PASS +Test 125 hafs_regional_atm_ocn_wav PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/hafs_regional_1nest_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/hafs_regional_1nest_atm -Checking test 127 hafs_regional_1nest_atm results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/hafs_regional_1nest_atm +Checking test 126 hafs_regional_1nest_atm 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 = 459.918979 - 0: The maximum resident set size (KB) = 534828 + 0: The total amount of wall time = 455.021619 + 0: The maximum resident set size (KB) = 534356 -Test 127 hafs_regional_1nest_atm PASS +Test 126 hafs_regional_1nest_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/hafs_regional_telescopic_2nests_atm -Checking test 128 hafs_regional_telescopic_2nests_atm results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/hafs_regional_telescopic_2nests_atm +Checking test 127 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4203,29 +4148,29 @@ Checking test 128 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 515.242330 - 0: The maximum resident set size (KB) = 535068 + 0: The total amount of wall time = 507.311215 + 0: The maximum resident set size (KB) = 534548 -Test 128 hafs_regional_telescopic_2nests_atm PASS +Test 127 hafs_regional_telescopic_2nests_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/hafs_global_1nest_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/hafs_global_1nest_atm -Checking test 129 hafs_global_1nest_atm results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/hafs_global_1nest_atm +Checking test 128 hafs_global_1nest_atm 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 = 213.082611 - 0: The maximum resident set size (KB) = 376896 + 0: The total amount of wall time = 210.637563 + 0: The maximum resident set size (KB) = 380300 -Test 129 hafs_global_1nest_atm PASS +Test 128 hafs_global_1nest_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/hafs_global_multiple_4nests_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/hafs_global_multiple_4nests_atm -Checking test 130 hafs_global_multiple_4nests_atm results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/hafs_global_multiple_4nests_atm +Checking test 129 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4242,15 +4187,15 @@ Checking test 130 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK - 0: The total amount of wall time = 590.694509 - 0: The maximum resident set size (KB) = 390572 + 0: The total amount of wall time = 660.068394 + 0: The maximum resident set size (KB) = 391356 -Test 130 hafs_global_multiple_4nests_atm PASS +Test 129 hafs_global_multiple_4nests_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/hafs_regional_specified_moving_1nest_atm -Checking test 131 hafs_regional_specified_moving_1nest_atm results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/hafs_regional_specified_moving_1nest_atm +Checking test 130 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4258,29 +4203,29 @@ Checking test 131 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 272.983463 - 0: The maximum resident set size (KB) = 525444 + 0: The total amount of wall time = 320.438555 + 0: The maximum resident set size (KB) = 527120 -Test 131 hafs_regional_specified_moving_1nest_atm PASS +Test 130 hafs_regional_specified_moving_1nest_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/hafs_regional_storm_following_1nest_atm -Checking test 132 hafs_regional_storm_following_1nest_atm results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/hafs_regional_storm_following_1nest_atm +Checking test 131 hafs_regional_storm_following_1nest_atm 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 = 266.317945 - 0: The maximum resident set size (KB) = 529952 + 0: The total amount of wall time = 264.538561 + 0: The maximum resident set size (KB) = 533064 -Test 132 hafs_regional_storm_following_1nest_atm PASS +Test 131 hafs_regional_storm_following_1nest_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/hafs_regional_storm_following_1nest_atm_ocn -Checking test 133 hafs_regional_storm_following_1nest_atm_ocn results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/hafs_regional_storm_following_1nest_atm_ocn +Checking test 132 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4288,15 +4233,15 @@ Checking test 133 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 269.496046 - 0: The maximum resident set size (KB) = 574652 + 0: The total amount of wall time = 273.710201 + 0: The maximum resident set size (KB) = 569144 -Test 133 hafs_regional_storm_following_1nest_atm_ocn PASS +Test 132 hafs_regional_storm_following_1nest_atm_ocn PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/hafs_regional_storm_following_1nest_atm_ocn_wav -Checking test 134 hafs_regional_storm_following_1nest_atm_ocn_wav results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/hafs_regional_storm_following_1nest_atm_ocn_wav +Checking test 133 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4306,176 +4251,176 @@ Checking test 134 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 622.740041 - 0: The maximum resident set size (KB) = 580464 + 0: The total amount of wall time = 601.937430 + 0: The maximum resident set size (KB) = 561716 -Test 134 hafs_regional_storm_following_1nest_atm_ocn_wav PASS +Test 133 hafs_regional_storm_following_1nest_atm_ocn_wav PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/hafs_global_storm_following_1nest_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/hafs_global_storm_following_1nest_atm -Checking test 135 hafs_global_storm_following_1nest_atm results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/hafs_global_storm_following_1nest_atm +Checking test 134 hafs_global_storm_following_1nest_atm 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 = 80.591782 - 0: The maximum resident set size (KB) = 396584 + 0: The total amount of wall time = 79.228125 + 0: The maximum resident set size (KB) = 397272 -Test 135 hafs_global_storm_following_1nest_atm PASS +Test 134 hafs_global_storm_following_1nest_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/hafs_regional_docn -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/hafs_regional_docn -Checking test 136 hafs_regional_docn results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/hafs_regional_docn +Checking test 135 hafs_regional_docn 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 = 382.304600 - 0: The maximum resident set size (KB) = 1214424 + 0: The total amount of wall time = 383.149154 + 0: The maximum resident set size (KB) = 1211720 -Test 136 hafs_regional_docn PASS +Test 135 hafs_regional_docn PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/hafs_regional_docn_oisst -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/hafs_regional_docn_oisst -Checking test 137 hafs_regional_docn_oisst results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/hafs_regional_docn_oisst +Checking test 136 hafs_regional_docn_oisst 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 = 387.994764 - 0: The maximum resident set size (KB) = 1196236 + 0: The total amount of wall time = 387.303934 + 0: The maximum resident set size (KB) = 1202980 -Test 137 hafs_regional_docn_oisst PASS +Test 136 hafs_regional_docn_oisst PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/hafs_regional_datm_cdeps -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/hafs_regional_datm_cdeps -Checking test 138 hafs_regional_datm_cdeps results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/hafs_regional_datm_cdeps +Checking test 137 hafs_regional_datm_cdeps 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 = 926.085324 - 0: The maximum resident set size (KB) = 1043856 + 0: The total amount of wall time = 924.262038 + 0: The maximum resident set size (KB) = 1045064 -Test 138 hafs_regional_datm_cdeps PASS +Test 137 hafs_regional_datm_cdeps PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/datm_cdeps_control_cfsr -Checking test 139 datm_cdeps_control_cfsr results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/datm_cdeps_control_cfsr +Checking test 138 datm_cdeps_control_cfsr results .... Comparing RESTART/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 = 145.632113 - 0: The maximum resident set size (KB) = 1067592 + 0: The total amount of wall time = 148.189695 + 0: The maximum resident set size (KB) = 1075116 -Test 139 datm_cdeps_control_cfsr PASS +Test 138 datm_cdeps_control_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/datm_cdeps_restart_cfsr -Checking test 140 datm_cdeps_restart_cfsr results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/datm_cdeps_restart_cfsr +Checking test 139 datm_cdeps_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 89.468414 - 0: The maximum resident set size (KB) = 1021724 + 0: The total amount of wall time = 91.577779 + 0: The maximum resident set size (KB) = 1024568 -Test 140 datm_cdeps_restart_cfsr PASS +Test 139 datm_cdeps_restart_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/datm_cdeps_control_gefs -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/datm_cdeps_control_gefs -Checking test 141 datm_cdeps_control_gefs results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/datm_cdeps_control_gefs +Checking test 140 datm_cdeps_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 142.903964 - 0: The maximum resident set size (KB) = 963436 + 0: The total amount of wall time = 141.745788 + 0: The maximum resident set size (KB) = 970144 -Test 141 datm_cdeps_control_gefs PASS +Test 140 datm_cdeps_control_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/datm_cdeps_iau_gefs -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/datm_cdeps_iau_gefs -Checking test 142 datm_cdeps_iau_gefs results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/datm_cdeps_iau_gefs +Checking test 141 datm_cdeps_iau_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 142.545506 - 0: The maximum resident set size (KB) = 971864 + 0: The total amount of wall time = 148.251421 + 0: The maximum resident set size (KB) = 964356 -Test 142 datm_cdeps_iau_gefs PASS +Test 141 datm_cdeps_iau_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/datm_cdeps_stochy_gefs -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/datm_cdeps_stochy_gefs -Checking test 143 datm_cdeps_stochy_gefs results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/datm_cdeps_stochy_gefs +Checking test 142 datm_cdeps_stochy_gefs results .... Comparing RESTART/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.123340 - 0: The maximum resident set size (KB) = 981108 + 0: The total amount of wall time = 142.590929 + 0: The maximum resident set size (KB) = 978332 -Test 143 datm_cdeps_stochy_gefs PASS +Test 142 datm_cdeps_stochy_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/datm_cdeps_ciceC_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/datm_cdeps_ciceC_cfsr -Checking test 144 datm_cdeps_ciceC_cfsr results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/datm_cdeps_ciceC_cfsr +Checking test 143 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/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.431061 - 0: The maximum resident set size (KB) = 1076028 + 0: The total amount of wall time = 144.873543 + 0: The maximum resident set size (KB) = 1065172 -Test 144 datm_cdeps_ciceC_cfsr PASS +Test 143 datm_cdeps_ciceC_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/datm_cdeps_bulk_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/datm_cdeps_bulk_cfsr -Checking test 145 datm_cdeps_bulk_cfsr results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/datm_cdeps_bulk_cfsr +Checking test 144 datm_cdeps_bulk_cfsr results .... Comparing RESTART/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 = 145.069546 - 0: The maximum resident set size (KB) = 1083860 + 0: The total amount of wall time = 147.064465 + 0: The maximum resident set size (KB) = 1067528 -Test 145 datm_cdeps_bulk_cfsr PASS +Test 144 datm_cdeps_bulk_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/datm_cdeps_bulk_gefs -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/datm_cdeps_bulk_gefs -Checking test 146 datm_cdeps_bulk_gefs results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/datm_cdeps_bulk_gefs +Checking test 145 datm_cdeps_bulk_gefs results .... Comparing RESTART/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 = 140.403841 - 0: The maximum resident set size (KB) = 959788 + 0: The total amount of wall time = 140.592820 + 0: The maximum resident set size (KB) = 967624 -Test 146 datm_cdeps_bulk_gefs PASS +Test 145 datm_cdeps_bulk_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/datm_cdeps_mx025_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/datm_cdeps_mx025_cfsr -Checking test 147 datm_cdeps_mx025_cfsr results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/datm_cdeps_mx025_cfsr +Checking test 146 datm_cdeps_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK @@ -4483,15 +4428,15 @@ Checking test 147 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 439.615701 - 0: The maximum resident set size (KB) = 879860 + 0: The total amount of wall time = 435.674931 + 0: The maximum resident set size (KB) = 878924 -Test 147 datm_cdeps_mx025_cfsr PASS +Test 146 datm_cdeps_mx025_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/datm_cdeps_mx025_gefs -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/datm_cdeps_mx025_gefs -Checking test 148 datm_cdeps_mx025_gefs results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/datm_cdeps_mx025_gefs +Checking test 147 datm_cdeps_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK @@ -4499,65 +4444,65 @@ Checking test 148 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 438.052557 - 0: The maximum resident set size (KB) = 926984 + 0: The total amount of wall time = 461.585998 + 0: The maximum resident set size (KB) = 932676 -Test 148 datm_cdeps_mx025_gefs PASS +Test 147 datm_cdeps_mx025_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/datm_cdeps_multiple_files_cfsr -Checking test 149 datm_cdeps_multiple_files_cfsr results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/datm_cdeps_multiple_files_cfsr +Checking test 148 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 146.416275 - 0: The maximum resident set size (KB) = 1048016 + 0: The total amount of wall time = 145.683383 + 0: The maximum resident set size (KB) = 1083732 -Test 149 datm_cdeps_multiple_files_cfsr PASS +Test 148 datm_cdeps_multiple_files_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/datm_cdeps_3072x1536_cfsr -Checking test 150 datm_cdeps_3072x1536_cfsr results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/datm_cdeps_3072x1536_cfsr +Checking test 149 datm_cdeps_3072x1536_cfsr results .... Comparing RESTART/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 = 192.836163 - 0: The maximum resident set size (KB) = 2361452 + 0: The total amount of wall time = 198.541648 + 0: The maximum resident set size (KB) = 2370216 -Test 150 datm_cdeps_3072x1536_cfsr PASS +Test 149 datm_cdeps_3072x1536_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/datm_cdeps_gfs -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/datm_cdeps_gfs -Checking test 151 datm_cdeps_gfs results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/datm_cdeps_gfs +Checking test 150 datm_cdeps_gfs results .... Comparing RESTART/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 = 199.130944 - 0: The maximum resident set size (KB) = 2303092 + 0: The total amount of wall time = 197.751461 + 0: The maximum resident set size (KB) = 2352480 -Test 151 datm_cdeps_gfs PASS +Test 150 datm_cdeps_gfs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/datm_cdeps_debug_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/datm_cdeps_debug_cfsr -Checking test 152 datm_cdeps_debug_cfsr results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/datm_cdeps_debug_cfsr +Checking test 151 datm_cdeps_debug_cfsr results .... Comparing RESTART/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 = 433.727742 - 0: The maximum resident set size (KB) = 984620 + 0: The total amount of wall time = 444.888014 + 0: The maximum resident set size (KB) = 988216 -Test 152 datm_cdeps_debug_cfsr PASS +Test 151 datm_cdeps_debug_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/datm_cdeps_lnd_gswp3 -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/datm_cdeps_lnd_gswp3 -Checking test 153 datm_cdeps_lnd_gswp3 results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/datm_cdeps_lnd_gswp3 +Checking test 152 datm_cdeps_lnd_gswp3 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 @@ -4565,15 +4510,15 @@ Checking test 153 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 6.218231 - 0: The maximum resident set size (KB) = 264648 + 0: The total amount of wall time = 6.121582 + 0: The maximum resident set size (KB) = 265812 -Test 153 datm_cdeps_lnd_gswp3 PASS +Test 152 datm_cdeps_lnd_gswp3 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/datm_cdeps_lnd_gswp3 -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/datm_cdeps_lnd_gswp3_rst -Checking test 154 datm_cdeps_lnd_gswp3_rst results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/datm_cdeps_lnd_gswp3_rst +Checking test 153 datm_cdeps_lnd_gswp3_rst 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 @@ -4581,15 +4526,15 @@ Checking test 154 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 11.925579 - 0: The maximum resident set size (KB) = 257396 + 0: The total amount of wall time = 13.800713 + 0: The maximum resident set size (KB) = 266476 -Test 154 datm_cdeps_lnd_gswp3_rst PASS +Test 153 datm_cdeps_lnd_gswp3_rst PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_p8_atmlnd_sbs -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/control_p8_atmlnd_sbs -Checking test 155 control_p8_atmlnd_sbs results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/control_p8_atmlnd_sbs +Checking test 154 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -4673,15 +4618,15 @@ Checking test 155 control_p8_atmlnd_sbs results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 200.490660 - 0: The maximum resident set size (KB) = 1615596 + 0: The total amount of wall time = 202.348645 + 0: The maximum resident set size (KB) = 1614224 -Test 155 control_p8_atmlnd_sbs PASS +Test 154 control_p8_atmlnd_sbs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/control_atmwav -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/control_atmwav -Checking test 156 control_atmwav results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/control_atmwav +Checking test 155 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -4724,15 +4669,15 @@ Checking test 156 control_atmwav results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 85.156136 - 0: The maximum resident set size (KB) = 657480 + 0: The total amount of wall time = 86.122106 + 0: The maximum resident set size (KB) = 652732 -Test 156 control_atmwav PASS +Test 155 control_atmwav PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/atmaero_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/atmaero_control_p8 -Checking test 157 atmaero_control_p8 results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/atmaero_control_p8 +Checking test 156 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4775,15 +4720,15 @@ Checking test 157 atmaero_control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 225.521047 - 0: The maximum resident set size (KB) = 2976704 + 0: The total amount of wall time = 226.750685 + 0: The maximum resident set size (KB) = 2970148 -Test 157 atmaero_control_p8 PASS +Test 156 atmaero_control_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/atmaero_control_p8_rad -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/atmaero_control_p8_rad -Checking test 158 atmaero_control_p8_rad results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/atmaero_control_p8_rad +Checking test 157 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4826,15 +4771,15 @@ Checking test 158 atmaero_control_p8_rad results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 281.318814 - 0: The maximum resident set size (KB) = 2988676 + 0: The total amount of wall time = 278.582220 + 0: The maximum resident set size (KB) = 3048952 -Test 158 atmaero_control_p8_rad PASS +Test 157 atmaero_control_p8_rad PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/atmaero_control_p8_rad_micro -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/atmaero_control_p8_rad_micro -Checking test 159 atmaero_control_p8_rad_micro results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/atmaero_control_p8_rad_micro +Checking test 158 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4877,15 +4822,15 @@ Checking test 159 atmaero_control_p8_rad_micro results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 281.591934 - 0: The maximum resident set size (KB) = 3052908 + 0: The total amount of wall time = 286.026819 + 0: The maximum resident set size (KB) = 3055972 -Test 159 atmaero_control_p8_rad_micro PASS +Test 158 atmaero_control_p8_rad_micro PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221110/INTEL/regional_atmaq -working dir = /work/noaa/epic-ps/jongkim/rt-1475/stmp/jongkim/FV3_RT/rt_56228/regional_atmaq -Checking test 160 regional_atmaq results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_109327/regional_atmaq +Checking test 159 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing sfcf006.nc .........OK @@ -4900,12 +4845,12 @@ Checking test 160 regional_atmaq results .... Comparing RESTART/phy_data.nc .........OK Comparing RESTART/sfc_data.nc .........OK - 0: The total amount of wall time = 627.868978 - 0: The maximum resident set size (KB) = 1088264 + 0: The total amount of wall time = 638.438552 + 0: The maximum resident set size (KB) = 1091532 -Test 160 regional_atmaq PASS +Test 159 regional_atmaq PASS REGRESSION TEST WAS SUCCESSFUL -Fri Nov 11 12:36:27 CST 2022 -Elapsed time: 01h:04m:05s. Have a nice day! +Tue Nov 15 18:59:47 CST 2022 +Elapsed time: 00h:57m:59s. Have a nice day! diff --git a/tests/RegressionTests_wcoss2.intel.log b/tests/RegressionTests_wcoss2.intel.log index d4fe6df35e..661ab02bb3 100644 --- a/tests/RegressionTests_wcoss2.intel.log +++ b/tests/RegressionTests_wcoss2.intel.log @@ -1,25 +1,25 @@ -Fri Nov 11 00:46:16 UTC 2022 +Wed Nov 16 13:26:57 UTC 2022 Start Regression test -Compile 001 elapsed time 483 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 831 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 826 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 399 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 005 elapsed time 597 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 579 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 007 elapsed time 279 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 008 elapsed time 584 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 413 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 010 elapsed time 496 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 290 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 213 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 013 elapsed time 182 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 014 elapsed time 526 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 015 elapsed time 334 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 016 elapsed time 308 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 001 elapsed time 498 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 449 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 359 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 404 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 005 elapsed time 449 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 783 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 555 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 008 elapsed time 1206 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 720 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 010 elapsed time 667 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 329 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 579 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 013 elapsed time 338 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 014 elapsed time 805 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 015 elapsed time 549 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 016 elapsed time 352 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/cpld_control_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248265/cpld_control_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236917/cpld_control_noaero_p8 Checking test 001 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -83,14 +83,14 @@ Checking test 001 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 264.604629 -The maximum resident set size (KB) = 1573832 +The total amount of wall time = 287.510153 +The maximum resident set size (KB) = 1583060 Test 001 cpld_control_noaero_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/cpld_control_c96_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248265/cpld_control_nowave_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236917/cpld_control_nowave_noaero_p8 Checking test 002 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -152,14 +152,14 @@ Checking test 002 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 305.694258 -The maximum resident set size (KB) = 1623068 +The total amount of wall time = 321.890786 +The maximum resident set size (KB) = 1634512 Test 002 cpld_control_nowave_noaero_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/cpld_control_noaero_p8_agrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248265/cpld_control_noaero_p8_agrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236917/cpld_control_noaero_p8_agrid Checking test 003 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -221,14 +221,14 @@ Checking test 003 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 307.360591 -The maximum resident set size (KB) = 1628280 +The total amount of wall time = 329.971637 +The maximum resident set size (KB) = 1629184 Test 003 cpld_control_noaero_p8_agrid PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248265/control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236917/control Checking test 004 control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -275,14 +275,14 @@ Checking test 004 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 135.178945 -The maximum resident set size (KB) = 512916 +The total amount of wall time = 146.049054 +The maximum resident set size (KB) = 514260 Test 004 control PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248265/control_decomp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236917/control_decomp Checking test 005 control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -325,14 +325,14 @@ Checking test 005 control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 137.833460 -The maximum resident set size (KB) = 513380 +The total amount of wall time = 155.495046 +The maximum resident set size (KB) = 513584 Test 005 control_decomp PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248265/control_2dwrtdecomp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236917/control_2dwrtdecomp Checking test 006 control_2dwrtdecomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -343,14 +343,14 @@ Checking test 006 control_2dwrtdecomp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 131.861121 -The maximum resident set size (KB) = 515392 +The total amount of wall time = 151.238277 +The maximum resident set size (KB) = 516912 Test 006 control_2dwrtdecomp PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248265/control_2threads +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236917/control_2threads Checking test 007 control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -393,14 +393,14 @@ Checking test 007 control_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 401.593066 -The maximum resident set size (KB) = 562680 +The total amount of wall time = 413.628809 +The maximum resident set size (KB) = 562212 Test 007 control_2threads PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248265/control_restart +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236917/control_restart Checking test 008 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -439,14 +439,14 @@ Checking test 008 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 67.583668 -The maximum resident set size (KB) = 269452 +The total amount of wall time = 76.774045 +The maximum resident set size (KB) = 254116 Test 008 control_restart PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248265/control_fhzero +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236917/control_fhzero Checking test 009 control_fhzero results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -489,14 +489,14 @@ Checking test 009 control_fhzero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 127.461765 -The maximum resident set size (KB) = 518496 +The total amount of wall time = 144.693124 +The maximum resident set size (KB) = 518620 Test 009 control_fhzero PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/control_CubedSphereGrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248265/control_CubedSphereGrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236917/control_CubedSphereGrid Checking test 010 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -523,14 +523,14 @@ Checking test 010 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 130.460575 -The maximum resident set size (KB) = 514832 +The total amount of wall time = 147.826397 +The maximum resident set size (KB) = 510468 Test 010 control_CubedSphereGrid PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/control_latlon -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248265/control_latlon +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236917/control_latlon Checking test 011 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -541,14 +541,14 @@ Checking test 011 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 130.014743 -The maximum resident set size (KB) = 516628 +The total amount of wall time = 147.956829 +The maximum resident set size (KB) = 515620 Test 011 control_latlon PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248265/control_wrtGauss_netcdf_parallel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236917/control_wrtGauss_netcdf_parallel Checking test 012 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -559,14 +559,14 @@ Checking test 012 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 138.855634 -The maximum resident set size (KB) = 513836 +The total amount of wall time = 153.148787 +The maximum resident set size (KB) = 517096 Test 012 control_wrtGauss_netcdf_parallel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248265/control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236917/control_c48 Checking test 013 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -605,14 +605,14 @@ Checking test 013 control_c48 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 325.987941 -The maximum resident set size (KB) = 666196 +The total amount of wall time = 329.987044 +The maximum resident set size (KB) = 668104 Test 013 control_c48 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/control_c192 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248265/control_c192 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236917/control_c192 Checking test 014 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -623,14 +623,14 @@ Checking test 014 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 542.904725 -The maximum resident set size (KB) = 610200 +The total amount of wall time = 555.965591 +The maximum resident set size (KB) = 613428 Test 014 control_c192 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/control_c384 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248265/control_c384 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236917/control_c384 Checking test 015 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -641,14 +641,14 @@ Checking test 015 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 1670.164037 -The maximum resident set size (KB) = 877800 +The total amount of wall time = 1658.757218 +The maximum resident set size (KB) = 877360 Test 015 control_c384 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/control_c384gdas -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248265/control_c384gdas +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236917/control_c384gdas Checking test 016 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -691,14 +691,14 @@ Checking test 016 control_c384gdas results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 1428.036357 -The maximum resident set size (KB) = 1013948 +The total amount of wall time = 1434.451171 +The maximum resident set size (KB) = 1017832 Test 016 control_c384gdas PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/control_c384_progsigma -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248265/control_c384_progsigma +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236917/control_c384_progsigma Checking test 017 control_c384_progsigma results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -709,14 +709,14 @@ Checking test 017 control_c384_progsigma results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 1720.677222 -The maximum resident set size (KB) = 899116 +The total amount of wall time = 1703.386475 +The maximum resident set size (KB) = 901324 Test 017 control_c384_progsigma PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248265/control_stochy +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236917/control_stochy Checking test 018 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -727,28 +727,28 @@ Checking test 018 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 89.473620 -The maximum resident set size (KB) = 521740 +The total amount of wall time = 100.173978 +The maximum resident set size (KB) = 516780 Test 018 control_stochy PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248265/control_stochy_restart +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236917/control_stochy_restart Checking test 019 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 46.974705 -The maximum resident set size (KB) = 285132 +The total amount of wall time = 48.200371 +The maximum resident set size (KB) = 284540 Test 019 control_stochy_restart PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/control_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248265/control_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236917/control_lndp Checking test 020 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -759,14 +759,14 @@ Checking test 020 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 81.397725 -The maximum resident set size (KB) = 520172 +The total amount of wall time = 87.740160 +The maximum resident set size (KB) = 520344 Test 020 control_lndp PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/control_iovr4 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248265/control_iovr4 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236917/control_iovr4 Checking test 021 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -781,14 +781,14 @@ Checking test 021 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 142.154461 -The maximum resident set size (KB) = 515136 +The total amount of wall time = 147.138730 +The maximum resident set size (KB) = 518420 Test 021 control_iovr4 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/control_iovr5 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248265/control_iovr5 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236917/control_iovr5 Checking test 022 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -803,14 +803,14 @@ Checking test 022 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 134.008089 -The maximum resident set size (KB) = 513044 +The total amount of wall time = 141.519330 +The maximum resident set size (KB) = 516664 Test 022 control_iovr5 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248265/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236917/control_p8 Checking test 023 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -857,14 +857,14 @@ Checking test 023 control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 183.695860 -The maximum resident set size (KB) = 1485124 +The total amount of wall time = 195.657701 +The maximum resident set size (KB) = 1484340 Test 023 control_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/control_p8_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248265/control_p8_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236917/control_p8_lndp Checking test 024 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -883,14 +883,14 @@ Checking test 024 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -The total amount of wall time = 340.281413 -The maximum resident set size (KB) = 1483340 +The total amount of wall time = 349.058070 +The maximum resident set size (KB) = 1480700 Test 024 control_p8_lndp PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248265/control_restart_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236917/control_restart_p8 Checking test 025 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -929,14 +929,14 @@ Checking test 025 control_restart_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 104.670871 -The maximum resident set size (KB) = 653252 +The total amount of wall time = 109.106282 +The maximum resident set size (KB) = 650292 Test 025 control_restart_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248265/control_decomp_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236917/control_decomp_p8 Checking test 026 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -979,14 +979,14 @@ Checking test 026 control_decomp_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 195.163470 -The maximum resident set size (KB) = 1476340 +The total amount of wall time = 197.885471 +The maximum resident set size (KB) = 1478408 Test 026 control_decomp_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248265/control_2threads_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236917/control_2threads_p8 Checking test 027 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1029,14 +1029,14 @@ Checking test 027 control_2threads_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 490.601471 -The maximum resident set size (KB) = 1563420 +The total amount of wall time = 508.993976 +The maximum resident set size (KB) = 1568876 Test 027 control_2threads_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/control_p8_rrtmgp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248265/control_p8_rrtmgp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236917/control_p8_rrtmgp Checking test 028 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1083,14 +1083,14 @@ Checking test 028 control_p8_rrtmgp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 262.805676 -The maximum resident set size (KB) = 1599064 +The total amount of wall time = 273.011606 +The maximum resident set size (KB) = 1606916 Test 028 control_p8_rrtmgp PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/merra2_thompson -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248265/merra2_thompson +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236917/merra2_thompson Checking test 029 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1137,14 +1137,14 @@ Checking test 029 merra2_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 203.041625 -The maximum resident set size (KB) = 1501016 +The total amount of wall time = 201.353689 +The maximum resident set size (KB) = 1494620 Test 029 merra2_thompson PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248265/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236917/regional_control Checking test 030 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1155,28 +1155,28 @@ Checking test 030 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 298.716543 -The maximum resident set size (KB) = 653704 +The total amount of wall time = 329.114357 +The maximum resident set size (KB) = 652520 Test 030 regional_control PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248265/regional_restart +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236917/regional_restart Checking test 031 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 174.628061 -The maximum resident set size (KB) = 650428 +The total amount of wall time = 178.425038 +The maximum resident set size (KB) = 651112 Test 031 regional_restart PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248265/regional_decomp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236917/regional_decomp Checking test 032 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1187,14 +1187,14 @@ Checking test 032 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 309.646406 -The maximum resident set size (KB) = 652656 +The total amount of wall time = 342.459828 +The maximum resident set size (KB) = 649600 Test 032 regional_decomp PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248265/regional_2threads +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236917/regional_2threads Checking test 033 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1205,14 +1205,14 @@ Checking test 033 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 573.029931 -The maximum resident set size (KB) = 684216 +The total amount of wall time = 608.086586 +The maximum resident set size (KB) = 682740 Test 033 regional_2threads PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/regional_noquilt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248265/regional_noquilt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236917/regional_noquilt Checking test 034 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1220,46 +1220,30 @@ Checking test 034 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 327.744196 -The maximum resident set size (KB) = 646628 +The total amount of wall time = 358.227836 +The maximum resident set size (KB) = 645716 Test 034 regional_noquilt PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/regional_netcdf_parallel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248265/regional_netcdf_parallel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236917/regional_netcdf_parallel Checking test 035 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK -The total amount of wall time = 297.414981 -The maximum resident set size (KB) = 642192 +The total amount of wall time = 322.323467 +The maximum resident set size (KB) = 642108 Test 035 regional_netcdf_parallel PASS - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248265/regional_2dwrtdecomp -Checking test 036 regional_2dwrtdecomp 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 = 301.913424 -The maximum resident set size (KB) = 652152 - -Test 036 regional_2dwrtdecomp PASS +Test 036 regional_2dwrtdecomp FAIL baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/fv3_regional_wofs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248265/regional_wofs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236917/regional_wofs Checking test 037 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1270,14 +1254,14 @@ Checking test 037 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 386.866362 -The maximum resident set size (KB) = 338524 +The total amount of wall time = 422.384515 +The maximum resident set size (KB) = 334736 Test 037 regional_wofs PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248265/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236917/rap_control Checking test 038 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1324,14 +1308,14 @@ Checking test 038 rap_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 405.542562 -The maximum resident set size (KB) = 897376 +The total amount of wall time = 420.135421 +The maximum resident set size (KB) = 896684 Test 038 rap_control PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_rrtmgp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248265/rap_rrtmgp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236917/rap_rrtmgp Checking test 039 rap_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1378,14 +1362,14 @@ Checking test 039 rap_rrtmgp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 482.011343 -The maximum resident set size (KB) = 1009848 +The total amount of wall time = 498.325519 +The maximum resident set size (KB) = 1007832 Test 039 rap_rrtmgp PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/regional_spp_sppt_shum_skeb -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248265/regional_spp_sppt_shum_skeb +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236917/regional_spp_sppt_shum_skeb Checking test 040 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -1396,14 +1380,14 @@ Checking test 040 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 723.089862 -The maximum resident set size (KB) = 978120 +The total amount of wall time = 733.697509 +The maximum resident set size (KB) = 976376 Test 040 regional_spp_sppt_shum_skeb PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248265/rap_decomp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236917/rap_decomp Checking test 041 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1450,14 +1434,14 @@ Checking test 041 rap_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 426.770059 -The maximum resident set size (KB) = 891820 +The total amount of wall time = 441.191974 +The maximum resident set size (KB) = 891688 Test 041 rap_decomp PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248265/rap_2threads +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236917/rap_2threads Checking test 042 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1504,14 +1488,14 @@ Checking test 042 rap_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 1251.195940 -The maximum resident set size (KB) = 951660 +The total amount of wall time = 1261.021988 +The maximum resident set size (KB) = 951300 Test 042 rap_2threads PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248265/rap_restart +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236917/rap_restart Checking test 043 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1550,14 +1534,14 @@ Checking test 043 rap_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 202.556805 -The maximum resident set size (KB) = 640248 +The total amount of wall time = 214.443511 +The maximum resident set size (KB) = 639064 Test 043 rap_restart PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248265/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236917/rap_sfcdiff Checking test 044 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1604,14 +1588,14 @@ Checking test 044 rap_sfcdiff results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 409.891076 -The maximum resident set size (KB) = 896408 +The total amount of wall time = 417.358746 +The maximum resident set size (KB) = 895252 Test 044 rap_sfcdiff PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248265/rap_sfcdiff_decomp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236917/rap_sfcdiff_decomp Checking test 045 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1658,14 +1642,14 @@ Checking test 045 rap_sfcdiff_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 427.135102 -The maximum resident set size (KB) = 893568 +The total amount of wall time = 438.279521 +The maximum resident set size (KB) = 891884 Test 045 rap_sfcdiff_decomp PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248265/rap_sfcdiff_restart +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236917/rap_sfcdiff_restart Checking test 046 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -1704,14 +1688,14 @@ Checking test 046 rap_sfcdiff_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 301.919498 -The maximum resident set size (KB) = 636396 +The total amount of wall time = 311.913669 +The maximum resident set size (KB) = 638148 Test 046 rap_sfcdiff_restart PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248265/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236917/hrrr_control Checking test 047 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1758,14 +1742,14 @@ Checking test 047 hrrr_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 389.972057 -The maximum resident set size (KB) = 890440 +The total amount of wall time = 409.627554 +The maximum resident set size (KB) = 892372 Test 047 hrrr_control PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248265/hrrr_control_decomp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236917/hrrr_control_decomp Checking test 048 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1812,14 +1796,14 @@ Checking test 048 hrrr_control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 400.584849 -The maximum resident set size (KB) = 892028 +The total amount of wall time = 416.579654 +The maximum resident set size (KB) = 891256 Test 048 hrrr_control_decomp PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248265/hrrr_control_2threads +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236917/hrrr_control_2threads Checking test 049 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1866,14 +1850,14 @@ Checking test 049 hrrr_control_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 1235.125363 -The maximum resident set size (KB) = 948244 +The total amount of wall time = 1215.760540 +The maximum resident set size (KB) = 947492 Test 049 hrrr_control_2threads PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248265/hrrr_control_restart +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236917/hrrr_control_restart Checking test 050 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -1912,14 +1896,14 @@ Checking test 050 hrrr_control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 291.307547 -The maximum resident set size (KB) = 631760 +The total amount of wall time = 292.402593 +The maximum resident set size (KB) = 632740 Test 050 hrrr_control_restart PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/rrfs_v1beta -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248265/rrfs_v1beta +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236917/rrfs_v1beta Checking test 051 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1966,14 +1950,14 @@ Checking test 051 rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 412.965686 -The maximum resident set size (KB) = 888016 +The total amount of wall time = 413.631580 +The maximum resident set size (KB) = 889676 Test 051 rrfs_v1beta PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/rrfs_v1nssl -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248265/rrfs_v1nssl +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236917/rrfs_v1nssl Checking test 052 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1988,14 +1972,14 @@ Checking test 052 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 461.404228 -The maximum resident set size (KB) = 575516 +The total amount of wall time = 480.885899 +The maximum resident set size (KB) = 575208 Test 052 rrfs_v1nssl PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248265/rrfs_v1nssl_nohailnoccn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236917/rrfs_v1nssl_nohailnoccn Checking test 053 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2010,14 +1994,14 @@ Checking test 053 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 453.589882 -The maximum resident set size (KB) = 567676 +The total amount of wall time = 470.911608 +The maximum resident set size (KB) = 567976 Test 053 rrfs_v1nssl_nohailnoccn PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248265/rrfs_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236917/rrfs_conus13km_hrrr_warm Checking test 054 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2026,14 +2010,14 @@ Checking test 054 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 117.153554 -The maximum resident set size (KB) = 767900 +The total amount of wall time = 124.922161 +The maximum resident set size (KB) = 770140 Test 054 rrfs_conus13km_hrrr_warm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248265/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236917/rrfs_smoke_conus13km_hrrr_warm Checking test 055 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2042,14 +2026,14 @@ Checking test 055 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 130.171168 -The maximum resident set size (KB) = 780180 +The total amount of wall time = 135.884567 +The maximum resident set size (KB) = 776848 Test 055 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248265/rrfs_conus13km_radar_tten_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236917/rrfs_conus13km_radar_tten_warm Checking test 056 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2058,14 +2042,14 @@ Checking test 056 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 119.845032 -The maximum resident set size (KB) = 768404 +The total amount of wall time = 124.620255 +The maximum resident set size (KB) = 770124 Test 056 rrfs_conus13km_radar_tten_warm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248265/rrfs_conus13km_hrrr_warm_2threads +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236917/rrfs_conus13km_hrrr_warm_2threads Checking test 057 rrfs_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2074,14 +2058,14 @@ Checking test 057 rrfs_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 220.570027 -The maximum resident set size (KB) = 763944 +The total amount of wall time = 241.272344 +The maximum resident set size (KB) = 756320 Test 057 rrfs_conus13km_hrrr_warm_2threads PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248265/rrfs_conus13km_radar_tten_warm_2threads +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236917/rrfs_conus13km_radar_tten_warm_2threads Checking test 058 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2090,14 +2074,14 @@ Checking test 058 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 220.174327 -The maximum resident set size (KB) = 763356 +The total amount of wall time = 248.019557 +The maximum resident set size (KB) = 759976 Test 058 rrfs_conus13km_radar_tten_warm_2threads PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/control_csawmg -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248265/control_csawmg +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236917/control_csawmg Checking test 059 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2108,14 +2092,14 @@ Checking test 059 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 348.018433 -The maximum resident set size (KB) = 585268 +The total amount of wall time = 360.516221 +The maximum resident set size (KB) = 588936 Test 059 control_csawmg PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/control_csawmgt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248265/control_csawmgt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236917/control_csawmgt Checking test 060 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2126,14 +2110,14 @@ Checking test 060 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 351.286734 -The maximum resident set size (KB) = 585908 +The total amount of wall time = 365.945253 +The maximum resident set size (KB) = 586716 Test 060 control_csawmgt PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/control_ras -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248265/control_ras +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236917/control_ras Checking test 061 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2144,82 +2128,82 @@ Checking test 061 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 182.287679 -The maximum resident set size (KB) = 552544 +The total amount of wall time = 191.541720 +The maximum resident set size (KB) = 555384 Test 061 control_ras PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/control_wam -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248265/control_wam +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236917/control_wam Checking test 062 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 117.108134 -The maximum resident set size (KB) = 280624 +The total amount of wall time = 125.109166 +The maximum resident set size (KB) = 269264 Test 062 control_wam PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248265/rrfs_conus13km_hrrr_warm_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236917/rrfs_conus13km_hrrr_warm_debug Checking test 063 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 776.094976 -The maximum resident set size (KB) = 784204 +The total amount of wall time = 777.137218 +The maximum resident set size (KB) = 790204 Test 063 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/rrfs_conus13km_radar_tten_warm_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248265/rrfs_conus13km_radar_tten_warm_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236917/rrfs_conus13km_radar_tten_warm_debug Checking test 064 rrfs_conus13km_radar_tten_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 774.294857 -The maximum resident set size (KB) = 794640 +The total amount of wall time = 774.460297 +The maximum resident set size (KB) = 803164 Test 064 rrfs_conus13km_radar_tten_warm_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248265/control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236917/control_debug Checking test 065 control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 160.469628 -The maximum resident set size (KB) = 676176 +The total amount of wall time = 160.597918 +The maximum resident set size (KB) = 677344 Test 065 control_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248265/control_2threads_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236917/control_2threads_debug Checking test 066 control_2threads_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 453.814524 -The maximum resident set size (KB) = 732804 +The total amount of wall time = 451.827826 +The maximum resident set size (KB) = 727820 Test 066 control_2threads_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/control_CubedSphereGrid_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248265/control_CubedSphereGrid_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236917/control_CubedSphereGrid_debug Checking test 067 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2246,348 +2230,348 @@ Checking test 067 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 156.300669 -The maximum resident set size (KB) = 673680 +The total amount of wall time = 162.938504 +The maximum resident set size (KB) = 674660 Test 067 control_CubedSphereGrid_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248265/control_wrtGauss_netcdf_parallel_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236917/control_wrtGauss_netcdf_parallel_debug Checking test 068 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 160.671417 -The maximum resident set size (KB) = 674960 +The total amount of wall time = 159.033315 +The maximum resident set size (KB) = 677320 Test 068 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/control_stochy_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248265/control_stochy_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236917/control_stochy_debug Checking test 069 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 177.567785 -The maximum resident set size (KB) = 682424 +The total amount of wall time = 182.089695 +The maximum resident set size (KB) = 679888 Test 069 control_stochy_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/control_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248265/control_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236917/control_lndp_debug Checking test 070 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 164.343259 -The maximum resident set size (KB) = 680376 +The total amount of wall time = 165.082791 +The maximum resident set size (KB) = 681384 Test 070 control_lndp_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/control_csawmg_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248265/control_csawmg_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236917/control_csawmg_debug Checking test 071 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 257.372721 -The maximum resident set size (KB) = 720004 +The total amount of wall time = 259.669401 +The maximum resident set size (KB) = 722020 Test 071 control_csawmg_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/control_csawmgt_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248265/control_csawmgt_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236917/control_csawmgt_debug Checking test 072 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 251.517540 -The maximum resident set size (KB) = 716948 +The total amount of wall time = 258.795131 +The maximum resident set size (KB) = 718280 Test 072 control_csawmgt_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/control_ras_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248265/control_ras_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236917/control_ras_debug Checking test 073 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 170.199101 -The maximum resident set size (KB) = 687876 +The total amount of wall time = 163.514329 +The maximum resident set size (KB) = 688848 Test 073 control_ras_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/control_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248265/control_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236917/control_diag_debug Checking test 074 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 167.410458 -The maximum resident set size (KB) = 733956 +The total amount of wall time = 163.609677 +The maximum resident set size (KB) = 736384 Test 074 control_diag_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/control_debug_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248265/control_debug_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236917/control_debug_p8 Checking test 075 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 197.171198 -The maximum resident set size (KB) = 1502276 +The total amount of wall time = 194.987549 +The maximum resident set size (KB) = 1505396 Test 075 control_debug_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/regional_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248265/regional_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236917/regional_debug Checking test 076 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -The total amount of wall time = 1045.929824 -The maximum resident set size (KB) = 668912 +The total amount of wall time = 1047.672087 +The maximum resident set size (KB) = 672888 Test 076 regional_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248265/rap_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236917/rap_control_debug Checking test 077 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 298.083634 -The maximum resident set size (KB) = 1051540 +The total amount of wall time = 302.118762 +The maximum resident set size (KB) = 1055056 Test 077 rap_control_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/hrrr_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248265/hrrr_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236917/hrrr_control_debug Checking test 078 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 291.348483 -The maximum resident set size (KB) = 1049876 +The total amount of wall time = 295.493935 +The maximum resident set size (KB) = 1049084 Test 078 hrrr_control_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248265/rap_unified_drag_suite_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236917/rap_unified_drag_suite_debug Checking test 079 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 300.681165 -The maximum resident set size (KB) = 1054608 +The total amount of wall time = 299.259646 +The maximum resident set size (KB) = 1054360 Test 079 rap_unified_drag_suite_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248265/rap_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236917/rap_diag_debug Checking test 080 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 305.906791 -The maximum resident set size (KB) = 1131960 +The total amount of wall time = 307.303200 +The maximum resident set size (KB) = 1140560 Test 080 rap_diag_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248265/rap_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236917/rap_cires_ugwp_debug Checking test 081 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 310.614125 -The maximum resident set size (KB) = 1051344 +The total amount of wall time = 320.470615 +The maximum resident set size (KB) = 1051704 Test 081 rap_cires_ugwp_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248265/rap_unified_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236917/rap_unified_ugwp_debug Checking test 082 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 313.982342 -The maximum resident set size (KB) = 1052552 +The total amount of wall time = 304.343937 +The maximum resident set size (KB) = 1053928 Test 082 rap_unified_ugwp_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248265/rap_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236917/rap_lndp_debug Checking test 083 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 303.967489 -The maximum resident set size (KB) = 1054264 +The total amount of wall time = 301.031089 +The maximum resident set size (KB) = 1056104 Test 083 rap_lndp_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_flake_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248265/rap_flake_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236917/rap_flake_debug Checking test 084 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 304.332426 -The maximum resident set size (KB) = 1047216 +The total amount of wall time = 301.305639 +The maximum resident set size (KB) = 1051676 Test 084 rap_flake_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_progcld_thompson_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248265/rap_progcld_thompson_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236917/rap_progcld_thompson_debug Checking test 085 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 296.307982 -The maximum resident set size (KB) = 1048196 +The total amount of wall time = 301.170922 +The maximum resident set size (KB) = 1050032 Test 085 rap_progcld_thompson_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_noah_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248265/rap_noah_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236917/rap_noah_debug Checking test 086 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 294.054238 -The maximum resident set size (KB) = 1050376 +The total amount of wall time = 300.505433 +The maximum resident set size (KB) = 1053052 Test 086 rap_noah_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_rrtmgp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248265/rap_rrtmgp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236917/rap_rrtmgp_debug Checking test 087 rap_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 525.488777 -The maximum resident set size (KB) = 1166924 +The total amount of wall time = 504.625383 +The maximum resident set size (KB) = 1169776 Test 087 rap_rrtmgp_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_sfcdiff_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248265/rap_sfcdiff_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236917/rap_sfcdiff_debug Checking test 088 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 300.018071 -The maximum resident set size (KB) = 1048080 +The total amount of wall time = 298.126968 +The maximum resident set size (KB) = 1052660 Test 088 rap_sfcdiff_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248265/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236917/rap_noah_sfcdiff_cires_ugwp_debug Checking test 089 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 487.897852 -The maximum resident set size (KB) = 1049016 +The total amount of wall time = 504.890623 +The maximum resident set size (KB) = 1055116 Test 089 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/rrfs_v1beta_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248265/rrfs_v1beta_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236917/rrfs_v1beta_debug Checking test 090 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 300.123101 -The maximum resident set size (KB) = 1044692 +The total amount of wall time = 296.294376 +The maximum resident set size (KB) = 1049212 Test 090 rrfs_v1beta_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/control_wam_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248265/control_wam_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236917/control_wam_debug Checking test 091 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -The total amount of wall time = 298.933026 -The maximum resident set size (KB) = 293728 +The total amount of wall time = 301.422895 +The maximum resident set size (KB) = 294048 Test 091 control_wam_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248265/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236917/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 092 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2598,14 +2582,14 @@ Checking test 092 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 671.730473 -The maximum resident set size (KB) = 879100 +The total amount of wall time = 672.698903 +The maximum resident set size (KB) = 874692 Test 092 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248265/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236917/rap_control_dyn32_phy32 Checking test 093 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2652,14 +2636,14 @@ Checking test 093 rap_control_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 334.799219 -The maximum resident set size (KB) = 775020 +The total amount of wall time = 336.881112 +The maximum resident set size (KB) = 776892 Test 093 rap_control_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248265/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236917/hrrr_control_dyn32_phy32 Checking test 094 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2706,14 +2690,14 @@ Checking test 094 hrrr_control_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 178.807235 -The maximum resident set size (KB) = 774556 +The total amount of wall time = 180.708667 +The maximum resident set size (KB) = 775104 Test 094 hrrr_control_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248265/rap_2threads_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236917/rap_2threads_dyn32_phy32 Checking test 095 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2760,14 +2744,14 @@ Checking test 095 rap_2threads_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 1030.085652 -The maximum resident set size (KB) = 815096 +The total amount of wall time = 1054.527520 +The maximum resident set size (KB) = 815896 Test 095 rap_2threads_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248265/hrrr_control_2threads_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236917/hrrr_control_2threads_dyn32_phy32 Checking test 096 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2814,14 +2798,14 @@ Checking test 096 hrrr_control_2threads_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 542.627355 -The maximum resident set size (KB) = 813744 +The total amount of wall time = 541.004551 +The maximum resident set size (KB) = 817140 Test 096 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248265/hrrr_control_decomp_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236917/hrrr_control_decomp_dyn32_phy32 Checking test 097 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2868,14 +2852,14 @@ Checking test 097 hrrr_control_decomp_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 184.860706 -The maximum resident set size (KB) = 772556 +The total amount of wall time = 197.040138 +The maximum resident set size (KB) = 772996 Test 097 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248265/rap_restart_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236917/rap_restart_dyn32_phy32 Checking test 098 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2914,14 +2898,14 @@ Checking test 098 rap_restart_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 246.935535 -The maximum resident set size (KB) = 605892 +The total amount of wall time = 267.444185 +The maximum resident set size (KB) = 606484 Test 098 rap_restart_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248265/hrrr_control_restart_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236917/hrrr_control_restart_dyn32_phy32 Checking test 099 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2960,14 +2944,14 @@ Checking test 099 hrrr_control_restart_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 88.542543 -The maximum resident set size (KB) = 601132 +The total amount of wall time = 96.422397 +The maximum resident set size (KB) = 601312 Test 099 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_control_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248265/rap_control_dyn64_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236917/rap_control_dyn64_phy32 Checking test 100 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3014,81 +2998,81 @@ Checking test 100 rap_control_dyn64_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 228.158237 -The maximum resident set size (KB) = 792492 +The total amount of wall time = 257.201683 +The maximum resident set size (KB) = 797096 Test 100 rap_control_dyn64_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248265/rap_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236917/rap_control_debug_dyn32_phy32 Checking test 101 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 290.745097 -The maximum resident set size (KB) = 936520 +The total amount of wall time = 293.035901 +The maximum resident set size (KB) = 939508 Test 101 rap_control_debug_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248265/hrrr_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236917/hrrr_control_debug_dyn32_phy32 Checking test 102 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 284.836843 -The maximum resident set size (KB) = 938500 +The total amount of wall time = 290.841010 +The maximum resident set size (KB) = 936892 Test 102 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248265/rap_control_dyn64_phy32_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236917/rap_control_dyn64_phy32_debug Checking test 103 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 291.367055 -The maximum resident set size (KB) = 958312 +The total amount of wall time = 296.286801 +The maximum resident set size (KB) = 952124 Test 103 rap_control_dyn64_phy32_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/hafs_regional_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248265/hafs_regional_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236917/hafs_regional_atm Checking test 104 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -The total amount of wall time = 707.545773 -The maximum resident set size (KB) = 780604 +The total amount of wall time = 740.179905 +The maximum resident set size (KB) = 784284 Test 104 hafs_regional_atm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248265/hafs_regional_atm_thompson_gfdlsf +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236917/hafs_regional_atm_thompson_gfdlsf Checking test 105 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 823.039920 -The maximum resident set size (KB) = 1145632 +The total amount of wall time = 841.926991 +The maximum resident set size (KB) = 1145388 Test 105 hafs_regional_atm_thompson_gfdlsf PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/hafs_regional_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248265/hafs_regional_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236917/hafs_regional_atm_ocn Checking test 106 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3097,14 +3081,14 @@ Checking test 106 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 439.339526 -The maximum resident set size (KB) = 835196 +The total amount of wall time = 516.547150 +The maximum resident set size (KB) = 835376 Test 106 hafs_regional_atm_ocn PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/hafs_regional_atm_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248265/hafs_regional_atm_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236917/hafs_regional_atm_wav Checking test 107 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3113,14 +3097,14 @@ Checking test 107 hafs_regional_atm_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 703.531312 -The maximum resident set size (KB) = 862192 +The total amount of wall time = 742.715336 +The maximum resident set size (KB) = 866844 Test 107 hafs_regional_atm_wav PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/hafs_regional_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248265/hafs_regional_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236917/hafs_regional_atm_ocn_wav Checking test 108 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3131,28 +3115,28 @@ Checking test 108 hafs_regional_atm_ocn_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 901.711932 -The maximum resident set size (KB) = 889696 +The total amount of wall time = 935.584061 +The maximum resident set size (KB) = 891328 Test 108 hafs_regional_atm_ocn_wav PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/hafs_regional_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248265/hafs_regional_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236917/hafs_regional_1nest_atm Checking test 109 hafs_regional_1nest_atm 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 = 1113.837741 -The maximum resident set size (KB) = 376184 +The total amount of wall time = 1131.693078 +The maximum resident set size (KB) = 374664 Test 109 hafs_regional_1nest_atm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248265/hafs_regional_telescopic_2nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236917/hafs_regional_telescopic_2nests_atm Checking test 110 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3161,28 +3145,28 @@ Checking test 110 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -The total amount of wall time = 1296.839975 -The maximum resident set size (KB) = 386072 +The total amount of wall time = 1316.424337 +The maximum resident set size (KB) = 386228 Test 110 hafs_regional_telescopic_2nests_atm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/hafs_global_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248265/hafs_global_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236917/hafs_global_1nest_atm Checking test 111 hafs_global_1nest_atm 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 = 539.495061 -The maximum resident set size (KB) = 270564 +The total amount of wall time = 638.127577 +The maximum resident set size (KB) = 247272 Test 111 hafs_global_1nest_atm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/hafs_global_multiple_4nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248265/hafs_global_multiple_4nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236917/hafs_global_multiple_4nests_atm Checking test 112 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3200,14 +3184,14 @@ Checking test 112 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK -The total amount of wall time = 1425.726816 -The maximum resident set size (KB) = 310184 +The total amount of wall time = 1447.512486 +The maximum resident set size (KB) = 338168 Test 112 hafs_global_multiple_4nests_atm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248265/hafs_regional_specified_moving_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236917/hafs_regional_specified_moving_1nest_atm Checking test 113 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3216,28 +3200,28 @@ Checking test 113 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -The total amount of wall time = 668.688312 -The maximum resident set size (KB) = 382652 +The total amount of wall time = 680.355160 +The maximum resident set size (KB) = 382932 Test 113 hafs_regional_specified_moving_1nest_atm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248265/hafs_regional_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236917/hafs_regional_storm_following_1nest_atm Checking test 114 hafs_regional_storm_following_1nest_atm 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 = 635.982172 -The maximum resident set size (KB) = 381988 +The total amount of wall time = 651.233935 +The maximum resident set size (KB) = 382404 Test 114 hafs_regional_storm_following_1nest_atm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248265/hafs_regional_storm_following_1nest_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236917/hafs_regional_storm_following_1nest_atm_ocn Checking test 115 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3246,14 +3230,14 @@ Checking test 115 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -The total amount of wall time = 667.996831 -The maximum resident set size (KB) = 409784 +The total amount of wall time = 689.755314 +The maximum resident set size (KB) = 409596 Test 115 hafs_regional_storm_following_1nest_atm_ocn PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248265/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236917/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 116 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3264,28 +3248,28 @@ Checking test 116 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK -The total amount of wall time = 1326.817374 -The maximum resident set size (KB) = 476268 +The total amount of wall time = 1358.560164 +The maximum resident set size (KB) = 475564 Test 116 hafs_regional_storm_following_1nest_atm_ocn_wav PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/hafs_global_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248265/hafs_global_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236917/hafs_global_storm_following_1nest_atm Checking test 117 hafs_global_storm_following_1nest_atm 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 = 215.419285 -The maximum resident set size (KB) = 273740 +The total amount of wall time = 239.687627 +The maximum resident set size (KB) = 271188 Test 117 hafs_global_storm_following_1nest_atm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/control_p8_atmlnd_sbs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248265/control_p8_atmlnd_sbs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236917/control_p8_atmlnd_sbs Checking test 118 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3370,14 +3354,14 @@ Checking test 118 control_p8_atmlnd_sbs results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK -The total amount of wall time = 246.866479 -The maximum resident set size (KB) = 1545656 +The total amount of wall time = 317.018940 +The maximum resident set size (KB) = 1547548 Test 118 control_p8_atmlnd_sbs PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/regional_atmaq -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248265/regional_atmaq +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236917/regional_atmaq Checking test 119 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -3393,12 +3377,40 @@ Checking test 119 regional_atmaq results .... Comparing RESTART/phy_data.nc .........OK Comparing RESTART/sfc_data.nc .........OK -The total amount of wall time = 728.107991 -The maximum resident set size (KB) = 1036084 +The total amount of wall time = 765.916404 +The maximum resident set size (KB) = 1035844 Test 119 regional_atmaq PASS +FAILED TESTS: +Test regional_2dwrtdecomp 036 failed in run_test failed + +REGRESSION TEST FAILED +Wed Nov 16 14:29:38 UTC 2022 +Elapsed time: 01h:02m:42s. Have a nice day! +Wed Nov 16 14:31:28 UTC 2022 +Start Regression test + +Compile 001 elapsed time 348 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221110/INTEL/control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_158296/control_2dwrtdecomp +Checking test 001 control_2dwrtdecomp 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 = 143.038248 +The maximum resident set size (KB) = 514812 + +Test 001 control_2dwrtdecomp PASS + REGRESSION TEST WAS SUCCESSFUL -Fri Nov 11 02:12:23 UTC 2022 -Elapsed time: 01h:26m:08s. Have a nice day! +Wed Nov 16 14:45:57 UTC 2022 +Elapsed time: 00h:14m:32s. Have a nice day! diff --git a/tests/ci/Jenkinsfile b/tests/ci/Jenkinsfile index aa0dd0aada..77b06463ae 100644 --- a/tests/ci/Jenkinsfile +++ b/tests/ci/Jenkinsfile @@ -72,7 +72,7 @@ pipeline { stage('Stage Test Data') { steps { - sh 'docker volume rm --force DataVolume && docker run --detach --rm --volume DataVolume:/tmp noaaepic/input-data:20220414' + sh 'docker volume rm --force DataVolume && docker run --detach --rm --volume DataVolume:/tmp noaaepic/input-data:20221101' } } diff --git a/tests/rt.conf b/tests/rt.conf index 6c246b18e5..935b5cc390 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -17,7 +17,6 @@ RUN | cpld_restart_c192_p8 RUN | cpld_bmark_p8 | - wcoss2.intel jet.intel cheyenne.intel acorn.intel | fv3 | RUN | cpld_restart_bmark_p8 | - wcoss2.intel jet.intel cheyenne.intel acorn.intel | | cpld_bmark_p8 -RUN | cpld_bmark_esmfthreads_p8 | - wcoss2.intel jet.intel cheyenne.intel acorn.intel | fv3 | COMPILE | -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | | fv3 | RUN | cpld_control_noaero_p8 | | fv3 | diff --git a/tests/tests/cpld_bmark_esmfthreads_p8 b/tests/tests/cpld_bmark_esmfthreads_p8 deleted file mode 100644 index f3b33e65b9..0000000000 --- a/tests/tests/cpld_bmark_esmfthreads_p8 +++ /dev/null @@ -1,158 +0,0 @@ -# -# cpld_bmark_p8 test -# -export TEST_DESCR="Fully coupled FV3-CCPP-GOCART-MOM6-CICE-CMEPS-WW3 system - C384L127 MX025 - Benchmark P8 test" - -export CNTL_DIR="cpld_bmark_p8" - -export LIST_FILES="sfcf006.nc \ - atmf006.nc \ - GFSFLX.GrbF06 \ - GFSPRS.GrbF06 \ - gocart.inst_aod.20130401_0600z.nc4 \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc \ - RESTART/MOM.res.nc \ - RESTART/MOM.res_1.nc \ - RESTART/MOM.res_2.nc \ - RESTART/MOM.res_3.nc \ - RESTART/iced.2013-04-01-21600.nc \ - RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc \ - 20130401.060000.out_pnt.ww3 \ - 20130401.060000.out_grd.ww3 " - -export_fv3 -export_cpl - -export NEMS_CONFIGURE=nems.configure.cpld_esmfthreads.IN - -export SYEAR=2013 -export SMONTH=04 -export SDAY=01 -export SHOUR=00 -export SECS=`expr $SHOUR \* 3600` -export BMIC=.true. - -export DAYS=0.25 -export FHMAX=6 -export RESTART_N=3 -export RESTART_INTERVAL="${RESTART_N} -1" -export OUTPUT_FH="3 -1" -export FHZERO=3 - -export DOMAINS_STACK_SIZE=16000000 - -export RUN_BEG="${SYEAR}${SMONTH}${SDAY} $(printf "%02d" $(( ${SHOUR} )))0000" - -export TASKS=$TASKS_cpl_bmrk -export INPES=$INPES_cpl_bmrk -export JNPES=$JNPES_cpl_bmrk -export THRD=1 -export ATM_compute_tasks=$(( INPES * JNPES * NTILES * THRD_cpl_bmrk )) -export WRTTASK_PER_GROUP=$(( WPG_cpl_bmrk * THRD_cpl_bmrk )) -export WRITE_DOPOST=.true. -export WLCLK=${WLCLK_cpl_bmrk:-$WLCLK} - -export OCN_tasks=$(( OCN_tasks_cpl_bmrk * OCN_thrds_cpl_bmrk )) -export ICE_tasks=$(( ICE_tasks_cpl_bmrk * ICE_thrds_cpl_bmrk )) -export WAV_tasks=$(( WAV_tasks_cpl_bmrk * WAV_thrds_cpl_bmrk )) - -export atm_omp_num_threads=$THRD_cpl_bmrk -export chm_omp_num_threads=$atm_omp_num_threads -export med_omp_num_threads=$atm_omp_num_threads -export ocn_omp_num_threads=$OCN_thrds_cpl_bmrk -export ice_omp_num_threads=$ICE_thrds_cpl_bmrk -export wav_omp_num_threads=$WAV_thrds_cpl_bmrk - -# atm/ocn/ice resolution -export ATMRES=C384 -export NPX=385 -export NPY=385 -export IMO=1536 -export JMO=768 -export OUTPUT_GRID="'gaussian_grid'" -export ATMTILESIZE=`expr $NPX - 1` - -export OCNRES=025 -export ICERES=0.25 -export NX_GLB=1440 -export NY_GLB=1080 -export NPROC_ICE=$ICE_tasks -export np2=`expr $NPROC_ICE / 2` -export BLCKX=`expr $NX_GLB / $np2` -export BLCKY=`expr $NY_GLB / 2` -export WAVDOMAIN=gwes_30m -export MESH_WAV=mesh.${WAVDOMAIN}.nc - -# set component and coupling timesteps -export DT_ATMOS=300 -export DT_INNER=${DT_ATMOS} -export DT_CICE=${DT_ATMOS} -export DT_DYNAM_MOM6=900 -export DT_THERM_MOM6=1800 - -# nems.configure -export coupling_interval_slow_sec=${DT_THERM_MOM6} -export coupling_interval_fast_sec=${DT_ATMOS} - -# resolution dependent files -export MOM_INPUT=MOM_input_template_${OCNRES} -export MESHOCN_ICE=mesh.mx${OCNRES}.nc -export CICEGRID=grid_cice_NEMS_mx${OCNRES}.nc -export CICEMASK=kmtu_cice_NEMS_mx${OCNRES}.nc -export CHLCLIM=seawifs-clim-1997-2010.${NX_GLB}x${NY_GLB}.v20180328.nc -export FRUNOFF=runoff.daitren.clim.${NX_GLB}x${NY_GLB}.v20180328.nc -export MOM6_RIVER_RUNOFF=True -export MOM6_RESTART_SETTING=r - -export FNALBC="'C384.snowfree_albedo.tileX.nc'" -export FNALBC2="'C384.facsf.tileX.nc'" -export FNTG3C="'C384.substrate_temperature.tileX.nc'" -export FNVEGC="'C384.vegetation_greenness.tileX.nc'" -export FNVETC="'C384.vegetation_type.tileX.nc'" -export FNSOTC="'C384.soil_type.tileX.nc'" -export FNVMNC="'C384.vegetation_greenness.tileX.nc'" -export FNVMXC="'C384.vegetation_greenness.tileX.nc'" -export FNSLPC="'C384.slope_type.tileX.nc'" -export FNABSC="'C384.maximum_snow_albedo.tileX.nc'" - -#BMICs do not contain NSST spinup -export NSTF_NAME=2,1,0,0,0 - -export CDMBWD=${CDMBWD_c384} - -export OUT_BEG=$RUN_BEG -export RST_BEG=$RUN_BEG -export RST_2_BEG=$RUN_BEG - -export FV3_RUN=cpld_control_run.IN diff --git a/tests/tests/cpld_bmark_p8 b/tests/tests/cpld_bmark_p8 index 849912afd9..f3b33e65b9 100644 --- a/tests/tests/cpld_bmark_p8 +++ b/tests/tests/cpld_bmark_p8 @@ -54,6 +54,8 @@ export LIST_FILES="sfcf006.nc \ export_fv3 export_cpl +export NEMS_CONFIGURE=nems.configure.cpld_esmfthreads.IN + export SYEAR=2013 export SMONTH=04 export SDAY=01 @@ -75,14 +77,22 @@ export RUN_BEG="${SYEAR}${SMONTH}${SDAY} $(printf "%02d" $(( ${SHOUR} )))0000" export TASKS=$TASKS_cpl_bmrk export INPES=$INPES_cpl_bmrk export JNPES=$JNPES_cpl_bmrk -export THRD=$THRD_cpl_bmrk -export WRTTASK_PER_GROUP=$WPG_cpl_bmrk +export THRD=1 +export ATM_compute_tasks=$(( INPES * JNPES * NTILES * THRD_cpl_bmrk )) +export WRTTASK_PER_GROUP=$(( WPG_cpl_bmrk * THRD_cpl_bmrk )) export WRITE_DOPOST=.true. export WLCLK=${WLCLK_cpl_bmrk:-$WLCLK} -OCN_tasks=$OCN_tasks_cpl_bmrk -ICE_tasks=$ICE_tasks_cpl_bmrk -WAV_tasks=$WAV_tasks_cpl_bmrk +export OCN_tasks=$(( OCN_tasks_cpl_bmrk * OCN_thrds_cpl_bmrk )) +export ICE_tasks=$(( ICE_tasks_cpl_bmrk * ICE_thrds_cpl_bmrk )) +export WAV_tasks=$(( WAV_tasks_cpl_bmrk * WAV_thrds_cpl_bmrk )) + +export atm_omp_num_threads=$THRD_cpl_bmrk +export chm_omp_num_threads=$atm_omp_num_threads +export med_omp_num_threads=$atm_omp_num_threads +export ocn_omp_num_threads=$OCN_thrds_cpl_bmrk +export ice_omp_num_threads=$ICE_thrds_cpl_bmrk +export wav_omp_num_threads=$WAV_thrds_cpl_bmrk # atm/ocn/ice resolution export ATMRES=C384 @@ -146,7 +156,3 @@ export RST_BEG=$RUN_BEG export RST_2_BEG=$RUN_BEG export FV3_RUN=cpld_control_run.IN - -if [[ $MACHINE_ID = cheyenne.* ]]; then - TPN=15 -fi diff --git a/tests/tests/cpld_restart_bmark_p8 b/tests/tests/cpld_restart_bmark_p8 index e76c732859..6a564e3eae 100644 --- a/tests/tests/cpld_restart_bmark_p8 +++ b/tests/tests/cpld_restart_bmark_p8 @@ -54,6 +54,8 @@ export LIST_FILES="sfcf006.nc \ export_fv3 export_cpl +export NEMS_CONFIGURE=nems.configure.cpld_esmfthreads.IN + export SYEAR=2013 export SMONTH=04 export SDAY=01 @@ -78,13 +80,22 @@ export RUN_BEG="${SYEAR}${SMONTH}${SDAY} $(printf "%02d" $(( ${FHROT}+${SHOUR} export TASKS=$TASKS_cpl_bmrk export INPES=$INPES_cpl_bmrk export JNPES=$JNPES_cpl_bmrk -export THRD=$THRD_cpl_bmrk +export THRD=1 +export ATM_compute_tasks=$(( INPES * JNPES * NTILES * THRD_cpl_bmrk )) +export WRTTASK_PER_GROUP=$(( WPG_cpl_bmrk * THRD_cpl_bmrk )) export WRITE_DOPOST=.true. -export WRTTASK_PER_GROUP=$WPG_cpl_bmrk +export WLCLK=${WLCLK_cpl_bmrk:-$WLCLK} + +export OCN_tasks=$(( OCN_tasks_cpl_bmrk * OCN_thrds_cpl_bmrk )) +export ICE_tasks=$(( ICE_tasks_cpl_bmrk * ICE_thrds_cpl_bmrk )) +export WAV_tasks=$(( WAV_tasks_cpl_bmrk * WAV_thrds_cpl_bmrk )) -OCN_tasks=$OCN_tasks_cpl_bmrk -ICE_tasks=$ICE_tasks_cpl_bmrk -WAV_tasks=$WAV_tasks_cpl_bmrk +export atm_omp_num_threads=$THRD_cpl_bmrk +export chm_omp_num_threads=$atm_omp_num_threads +export med_omp_num_threads=$atm_omp_num_threads +export ocn_omp_num_threads=$OCN_thrds_cpl_bmrk +export ice_omp_num_threads=$ICE_thrds_cpl_bmrk +export wav_omp_num_threads=$WAV_thrds_cpl_bmrk # atm/ocn/ice resolution export ATMRES=C384 @@ -162,7 +173,3 @@ export RST_BEG=$RUN_BEG export RST_2_BEG=$RUN_BEG export FV3_RUN=cpld_control_run.IN - -if [[ $MACHINE_ID = cheyenne.* ]]; then - TPN=15 -fi