From 846f0e40d65b1c776c26fa4bffaa8164d221741f Mon Sep 17 00:00:00 2001 From: Dusan Jovic <48258889+DusanJovic-NOAA@users.noreply.github.com> Date: Tue, 3 May 2022 08:30:09 -0400 Subject: [PATCH] Combine PROD and REPRO build options into 'Release' build type (#1171) Combined PROD and REPRO build modes into 'Release' build type. Now only 'Debug' and 'Release' build type are supported. Both build types must produce bit-for-bit reproducible outputs using different number of threads, mpi tasks, different domain decomposition, have reproducible restarts etc. --- CMakeLists.txt | 2 - FV3 | 2 +- cmake/GNU.cmake | 21 +- cmake/Intel.cmake | 35 +- tests/RegressionTests_cheyenne.gnu.log | 326 +++--- tests/RegressionTests_cheyenne.intel.log | 1068 ++++++++++---------- tests/RegressionTests_gaea.intel.log | 1064 ++++++++++---------- tests/RegressionTests_hera.gnu.log | 330 +++--- tests/RegressionTests_hera.intel.log | 1080 ++++++++++---------- tests/RegressionTests_jet.intel.log | 942 ++++++++--------- tests/RegressionTests_orion.intel.log | 1086 ++++++++++---------- tests/RegressionTests_wcoss_cray.log | 730 +++++++------- tests/RegressionTests_wcoss_dell_p3.log | 1174 +++++++++++----------- tests/compile.sh | 2 - tests/rt.conf | 2 +- tests/rt.sh | 13 +- tests/tests/cpld_control_c192_p8 | 2 +- tests/tests/cpld_restart_c192_p8 | 2 +- 18 files changed, 3909 insertions(+), 3972 deletions(-) mode change 100755 => 100644 tests/RegressionTests_cheyenne.gnu.log mode change 100755 => 100644 tests/RegressionTests_cheyenne.intel.log mode change 100755 => 100644 tests/RegressionTests_orion.intel.log diff --git a/CMakeLists.txt b/CMakeLists.txt index 045f70ae93..4bfdfab30e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -65,7 +65,6 @@ set(MULTI_GASES OFF CACHE BOOL "Enable MULTI_GASES") set(MOVING_NEST OFF CACHE BOOL "Enable moving nest code") set(OPENMP ON CACHE BOOL "Enable OpenMP threading") set(PARALLEL_NETCDF OFF CACHE BOOL "Enable parallel NetCDF") -set(REPRO OFF CACHE BOOL "Enable REPRO mode") set(JEDI_DRIVER OFF CACHE BOOL "Enable JEDI as top level driver") set(CMAKE_Platform $ENV{CMAKE_Platform}) @@ -90,7 +89,6 @@ message("MULTI_GASES ...... ${MULTI_GASES}") message("MOVING_NEST ...... ${MOVING_NEST}") message("OPENMP ........... ${OPENMP}") message("PARALLEL_NETCDF .. ${PARALLEL_NETCDF}") -message("REPRO ............ ${REPRO}") message("JEDI_DRIVER ...... ${JEDI_DRIVER}") message("") diff --git a/FV3 b/FV3 index f8cc77fdc3..c521b5d40b 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit f8cc77fdc36b4d348cb4cd7729f52a3c765a9f13 +Subproject commit c521b5d40bba6941a71db3236cd7405cb03068b7 diff --git a/cmake/GNU.cmake b/cmake/GNU.cmake index 039e9f9b72..4069d922d7 100644 --- a/cmake/GNU.cmake +++ b/cmake/GNU.cmake @@ -12,24 +12,7 @@ if(DEBUG) add_definitions(-DDEBUG) set(CMAKE_Fortran_FLAGS_DEBUG "${CMAKE_Fortran_FLAGS_DEBUG} -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check") set(CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG} -O0") -elseif(REPRO) - add_definitions(-DREPRO) - if (APPLE) - set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -O0") - set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -O0") - else() - set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -O2") - set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -O2") - endif() else() - set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -O2") - set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -O2") + set(CMAKE_Fortran_FLAGS_RELEASE "-O2") + set(CMAKE_C_FLAGS_RELEASE "-O2") endif() - -# For ccpp -set(CMAKE_C_FLAGS_RELEASE "-O2 -fPIC" CACHE STRING "" FORCE) -set(CMAKE_CXX_FLAGS_RELEASE "-O2 -fPIC" CACHE STRING "" FORCE) -set(CMAKE_Fortran_FLAGS_RELEASE "-O2 -fPIC" CACHE STRING "" FORCE) -set(CMAKE_C_FLAGS_BITFORBIT "-O2 -fPIC" CACHE STRING "" FORCE) -set(CMAKE_CXX_FLAGS_BITFORBIT "-O2 -fPIC" CACHE STRING "" FORCE) -set(CMAKE_Fortran_FLAGS_BITFORBIT "-O2 -fPIC" CACHE STRING "" FORCE) diff --git a/cmake/Intel.cmake b/cmake/Intel.cmake index a91bc30cec..83571e4707 100644 --- a/cmake/Intel.cmake +++ b/cmake/Intel.cmake @@ -16,38 +16,23 @@ if(DEBUG) endif() endif() set(CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG} -O0 -ftrapuv") -elseif(REPRO) - add_definitions(-DREPRO) - set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -O2 -debug minimal -fp-model consistent -qoverride-limits") - set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -O2 -debug minimal") else() - if(32BIT) - set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3") - else() - set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -no-prec-div -no-prec-sqrt") - endif() - set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -O2 -debug minimal") + set(CMAKE_Fortran_FLAGS_RELEASE "-O2 -debug minimal -qoverride-limits") + set(CMAKE_Fortran_FLAGS_RELEASE "${CMAKE_Fortran_FLAGS_RELEASE} -fp-model consistent") + set(CMAKE_C_FLAGS_RELEASE "-O2 -debug minimal") set(FAST "-fast-transcendentals") if(AVX2) - set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -march=core-avx2") - set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -march=core-avx2") + set(CMAKE_Fortran_FLAGS_RELEASE "${CMAKE_Fortran_FLAGS_RELEASE} -march=core-avx2") + set(CMAKE_C_FLAGS_RELEASE "${CMAKE_C_FLAGS_RELEASE} -march=core-avx2") elseif(SIMDMULTIARCH) - set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -axSSE4.2,CORE-AVX2") - set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -axSSE4.2,CORE-AVX2") - elseif(AVX) - set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -march=core-avx-i") - set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -march=core-avx-i") + set(CMAKE_Fortran_FLAGS_RELEASE "${CMAKE_Fortran_FLAGS_RELEASE} -axSSE4.2,CORE-AVX2") + set(CMAKE_C_FLAGS_RELEASE "${CMAKE_C_FLAGS_RELEASE} -axSSE4.2,CORE-AVX2") + elseif(AVX) + set(CMAKE_Fortran_FLAGS_RELEASE "${CMAKE_Fortran_FLAGS_RELEASE} -march=core-avx-i") + set(CMAKE_C_FLAGS_RELEASE "${CMAKE_C_FLAGS_RELEASE} -march=core-avx-i") endif() endif() -# For ccpp -set(CMAKE_C_FLAGS_RELEASE "-O2 -fPIC" CACHE STRING "" FORCE) -set(CMAKE_CXX_FLAGS_RELEASE "-O2 -fPIC" CACHE STRING "" FORCE) -set(CMAKE_Fortran_FLAGS_RELEASE "-O2 -fPIC" CACHE STRING "" FORCE) -set(CMAKE_C_FLAGS_BITFORBIT "-O2 -fPIC" CACHE STRING "" FORCE) -set(CMAKE_CXX_FLAGS_BITFORBIT "-O2 -fPIC" CACHE STRING "" FORCE) -set(CMAKE_Fortran_FLAGS_BITFORBIT "-O2 -fPIC" CACHE STRING "" FORCE) - if(APPLE) # The linker on macOS does not include `common symbols` by default # Passing the -c flag includes them and fixes an error with undefined symbols diff --git a/tests/RegressionTests_cheyenne.gnu.log b/tests/RegressionTests_cheyenne.gnu.log old mode 100755 new mode 100644 index d8e1f64747..71e984fdbe --- a/tests/RegressionTests_cheyenne.gnu.log +++ b/tests/RegressionTests_cheyenne.gnu.log @@ -1,16 +1,16 @@ -Fri Apr 29 11:16:23 MDT 2022 +Mon May 2 11:41:29 MDT 2022 Start Regression test -Compile 001 elapsed time 400 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_thompson,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 002 elapsed time 391 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 003 elapsed time 799 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 001 elapsed time 397 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_thompson,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 002 elapsed time 382 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 003 elapsed time 793 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug Compile 004 elapsed time 193 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 005 elapsed time 499 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 006 elapsed time 274 seconds. -DAPP=S2S -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 007 elapsed time 289 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 005 elapsed time 503 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 006 elapsed time 278 seconds. -DAPP=S2S -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 007 elapsed time 290 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/GNU/control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67899/control +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/GNU/control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16562/control Checking test 001 control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -57,14 +57,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 = 267.310135 +0:The total amount of wall time = 268.828883 0:The maximum resident set size (KB) = 433108 Test 001 control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/GNU/control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67899/control_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/GNU/control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16562/control_restart Checking test 002 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -103,14 +103,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 = 137.105665 -0:The maximum resident set size (KB) = 183120 +0:The total amount of wall time = 136.625219 +0:The maximum resident set size (KB) = 183756 Test 002 control_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/GNU/control_c48 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67899/control_c48 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/GNU/control_c48 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16562/control_c48 Checking test 003 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -149,14 +149,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 = 816.548404 -0:The maximum resident set size (KB) = 670108 +0:The total amount of wall time = 811.938927 +0:The maximum resident set size (KB) = 670120 Test 003 control_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/GNU/control_stochy -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67899/control_stochy +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/GNU/control_stochy +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16562/control_stochy Checking test 004 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -167,14 +167,14 @@ Checking test 004 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 174.590065 -0:The maximum resident set size (KB) = 427216 +0:The total amount of wall time = 170.151464 +0:The maximum resident set size (KB) = 427408 Test 004 control_stochy PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/GNU/control_flake -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67899/control_flake +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/GNU/control_flake +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16562/control_flake Checking test 005 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -185,14 +185,14 @@ Checking test 005 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 337.288787 -0:The maximum resident set size (KB) = 485740 +0:The total amount of wall time = 325.213170 +0:The maximum resident set size (KB) = 486100 Test 005 control_flake PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/GNU/control_rrtmgp -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67899/control_rrtmgp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/GNU/control_rrtmgp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16562/control_rrtmgp Checking test 006 control_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -203,14 +203,14 @@ Checking test 006 control_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 335.495986 -0:The maximum resident set size (KB) = 545536 +0:The total amount of wall time = 318.837871 +0:The maximum resident set size (KB) = 545676 Test 006 control_rrtmgp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/GNU/control_thompson -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67899/control_thompson +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/GNU/control_thompson +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16562/control_thompson Checking test 007 control_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -221,14 +221,14 @@ Checking test 007 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 362.844118 -0:The maximum resident set size (KB) = 795516 +0:The total amount of wall time = 354.026495 +0:The maximum resident set size (KB) = 795616 Test 007 control_thompson PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/GNU/control_thompson_no_aero -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67899/control_thompson_no_aero +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/GNU/control_thompson_no_aero +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16562/control_thompson_no_aero Checking test 008 control_thompson_no_aero results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -239,14 +239,14 @@ Checking test 008 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 347.384645 -0:The maximum resident set size (KB) = 788996 +0:The total amount of wall time = 340.095773 +0:The maximum resident set size (KB) = 789444 Test 008 control_thompson_no_aero PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/GNU/control_ras -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67899/control_ras +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/GNU/control_ras +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16562/control_ras Checking test 009 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -257,14 +257,14 @@ Checking test 009 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 288.841233 -0:The maximum resident set size (KB) = 446184 +0:The total amount of wall time = 284.037067 +0:The maximum resident set size (KB) = 445816 Test 009 control_ras PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/GNU/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67899/control_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/GNU/control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16562/control_p8 Checking test 010 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -311,14 +311,14 @@ Checking test 010 control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 369.683638 -0:The maximum resident set size (KB) = 928548 +0:The total amount of wall time = 352.676231 +0:The maximum resident set size (KB) = 928588 Test 010 control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/GNU/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67899/rap_control +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/GNU/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16562/rap_control Checking test 011 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -365,14 +365,14 @@ Checking test 011 rap_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 690.892487 -0:The maximum resident set size (KB) = 773940 +0:The total amount of wall time = 683.213013 +0:The maximum resident set size (KB) = 773860 Test 011 rap_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/GNU/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67899/rap_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/GNU/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16562/rap_2threads Checking test 012 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -419,14 +419,14 @@ Checking test 012 rap_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 1210.707427 -0:The maximum resident set size (KB) = 840784 +0:The total amount of wall time = 1207.640308 +0:The maximum resident set size (KB) = 840596 Test 012 rap_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/GNU/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67899/rap_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/GNU/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16562/rap_restart Checking test 013 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -465,14 +465,14 @@ Checking test 013 rap_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 340.861621 -0:The maximum resident set size (KB) = 521584 +0:The total amount of wall time = 341.964589 +0:The maximum resident set size (KB) = 521648 Test 013 rap_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/GNU/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67899/rap_sfcdiff +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/GNU/rap_sfcdiff +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16562/rap_sfcdiff Checking test 014 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -519,14 +519,14 @@ Checking test 014 rap_sfcdiff results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 688.832979 -0:The maximum resident set size (KB) = 773364 +0:The total amount of wall time = 681.136107 +0:The maximum resident set size (KB) = 773780 Test 014 rap_sfcdiff PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/GNU/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67899/rap_sfcdiff_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/GNU/rap_sfcdiff +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16562/rap_sfcdiff_restart Checking test 015 rap_sfcdiff_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -565,14 +565,14 @@ Checking test 015 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 = 344.818593 -0:The maximum resident set size (KB) = 521280 +0:The total amount of wall time = 340.394947 +0:The maximum resident set size (KB) = 520992 Test 015 rap_sfcdiff_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/GNU/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67899/hrrr_control +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/GNU/hrrr_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16562/hrrr_control Checking test 016 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -619,14 +619,14 @@ Checking test 016 hrrr_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 662.031206 -0:The maximum resident set size (KB) = 771368 +0:The total amount of wall time = 661.727420 +0:The maximum resident set size (KB) = 771768 Test 016 hrrr_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/GNU/rrfs_v1beta -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67899/rrfs_v1beta +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/GNU/rrfs_v1beta +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16562/rrfs_v1beta Checking test 017 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -673,14 +673,14 @@ Checking test 017 rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 677.382225 -0:The maximum resident set size (KB) = 771048 +0:The total amount of wall time = 678.657767 +0:The maximum resident set size (KB) = 771428 Test 017 rrfs_v1beta PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/GNU/rrfs_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67899/rrfs_conus13km_hrrr_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/GNU/rrfs_conus13km_hrrr_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16562/rrfs_conus13km_hrrr_warm Checking test 018 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -689,14 +689,14 @@ Checking test 018 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 316.529713 -0:The maximum resident set size (KB) = 592196 +0:The total amount of wall time = 318.309724 +0:The maximum resident set size (KB) = 592244 Test 018 rrfs_conus13km_hrrr_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/GNU/rrfs_conus13km_radar_tten_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67899/rrfs_conus13km_radar_tten_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/GNU/rrfs_conus13km_radar_tten_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16562/rrfs_conus13km_radar_tten_warm Checking test 019 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -705,250 +705,250 @@ Checking test 019 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 322.214518 -0:The maximum resident set size (KB) = 594924 +0:The total amount of wall time = 318.319405 +0:The maximum resident set size (KB) = 594980 Test 019 rrfs_conus13km_radar_tten_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/GNU/control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67899/control_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/GNU/control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16562/control_debug Checking test 020 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 = 80.924662 -0:The maximum resident set size (KB) = 424440 +0:The total amount of wall time = 80.630785 +0:The maximum resident set size (KB) = 424476 -Test 020 control_debug PASS +Test 020 control_debug PASS Tries: 2 -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/GNU/control_diag_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67899/control_diag_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/GNU/control_diag_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16562/control_diag_debug Checking test 021 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.072103 -0:The maximum resident set size (KB) = 481304 +0:The total amount of wall time = 86.524975 +0:The maximum resident set size (KB) = 482192 Test 021 control_diag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/GNU/fv3_regional_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67899/regional_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/GNU/fv3_regional_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16562/regional_debug Checking test 022 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 = 132.524756 +0:The total amount of wall time = 131.541446 0:The maximum resident set size (KB) = 535416 Test 022 regional_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/GNU/rap_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67899/rap_control_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/GNU/rap_control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16562/rap_control_debug Checking test 023 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 = 145.500700 +0:The total amount of wall time = 144.732428 0:The maximum resident set size (KB) = 796344 Test 023 rap_control_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/GNU/rap_diag_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67899/rap_diag_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/GNU/rap_diag_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16562/rap_diag_debug Checking test 024 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 = 153.453679 -0:The maximum resident set size (KB) = 878744 +0:The total amount of wall time = 152.709067 +0:The maximum resident set size (KB) = 878476 Test 024 rap_diag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/GNU/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67899/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/GNU/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16562/rap_noah_sfcdiff_cires_ugwp_debug Checking test 025 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.538533 -0:The maximum resident set size (KB) = 794964 +0:The total amount of wall time = 233.815715 +0:The maximum resident set size (KB) = 794924 Test 025 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/GNU/rap_progcld_thompson_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67899/rap_progcld_thompson_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/GNU/rap_progcld_thompson_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16562/rap_progcld_thompson_debug Checking test 026 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 = 145.305362 -0:The maximum resident set size (KB) = 796428 +0:The total amount of wall time = 144.470797 +0:The maximum resident set size (KB) = 796404 Test 026 rap_progcld_thompson_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/GNU/rrfs_v1beta_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67899/rrfs_v1beta_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/GNU/rrfs_v1beta_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16562/rrfs_v1beta_debug Checking test 027 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 = 144.271305 -0:The maximum resident set size (KB) = 790872 +0:The total amount of wall time = 143.884160 +0:The maximum resident set size (KB) = 790844 Test 027 rrfs_v1beta_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/GNU/control_thompson_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67899/control_thompson_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/GNU/control_thompson_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16562/control_thompson_debug Checking test 028 control_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 = 95.972062 -0:The maximum resident set size (KB) = 782056 +0:The total amount of wall time = 97.288367 +0:The maximum resident set size (KB) = 782008 Test 028 control_thompson_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/GNU/control_thompson_no_aero_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67899/control_thompson_no_aero_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/GNU/control_thompson_no_aero_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16562/control_thompson_no_aero_debug Checking test 029 control_thompson_no_aero_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 = 91.113355 -0:The maximum resident set size (KB) = 777392 +0:The total amount of wall time = 91.194952 +0:The maximum resident set size (KB) = 777456 Test 029 control_thompson_no_aero_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/GNU/control_thompson_debug_extdiag -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67899/control_thompson_extdiag_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/GNU/control_thompson_debug_extdiag +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16562/control_thompson_extdiag_debug Checking test 030 control_thompson_extdiag_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 = 101.790422 -0:The maximum resident set size (KB) = 823312 +0:The total amount of wall time = 100.568567 +0:The maximum resident set size (KB) = 823376 Test 030 control_thompson_extdiag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/GNU/control_thompson_progcld_thompson_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67899/control_thompson_progcld_thompson_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/GNU/control_thompson_progcld_thompson_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16562/control_thompson_progcld_thompson_debug Checking test 031 control_thompson_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 = 95.755030 -0:The maximum resident set size (KB) = 782428 +0:The total amount of wall time = 94.005995 +0:The maximum resident set size (KB) = 782396 Test 031 control_thompson_progcld_thompson_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/GNU/control_rrtmgp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67899/control_rrtmgp_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/GNU/control_rrtmgp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16562/control_rrtmgp_debug Checking test 032 control_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 = 87.211788 -0:The maximum resident set size (KB) = 535204 +0:The total amount of wall time = 86.941618 +0:The maximum resident set size (KB) = 535652 Test 032 control_rrtmgp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/GNU/control_ras_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67899/control_ras_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/GNU/control_ras_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16562/control_ras_debug Checking test 033 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 = 82.843501 -0:The maximum resident set size (KB) = 434368 +0:The total amount of wall time = 83.229513 +0:The maximum resident set size (KB) = 434008 Test 033 control_ras_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/GNU/control_stochy_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67899/control_stochy_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/GNU/control_stochy_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16562/control_stochy_debug Checking test 034 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 = 91.476154 -0:The maximum resident set size (KB) = 427872 +0:The total amount of wall time = 90.730399 +0:The maximum resident set size (KB) = 428992 Test 034 control_stochy_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/GNU/control_debug_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67899/control_debug_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/GNU/control_debug_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16562/control_debug_p8 Checking test 035 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 = 96.230076 -0:The maximum resident set size (KB) = 920308 +0:The total amount of wall time = 97.809897 +0:The maximum resident set size (KB) = 920320 Test 035 control_debug_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/GNU/control_wam_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67899/control_wam_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/GNU/control_wam_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16562/control_wam_debug Checking test 036 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -0:The total amount of wall time = 142.755896 -0:The maximum resident set size (KB) = 170832 +0:The total amount of wall time = 142.706793 +0:The maximum resident set size (KB) = 170812 Test 036 control_wam_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/GNU/cpld_control_c96_noaero_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67899/cpld_control_c96_noaero_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/GNU/cpld_control_c96_noaero_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16562/cpld_control_c96_noaero_p8 Checking test 037 cpld_control_c96_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1010,14 +1010,14 @@ Checking test 037 cpld_control_c96_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 = 450.784011 -0:The maximum resident set size (KB) = 953164 +0:The total amount of wall time = 447.376469 +0:The maximum resident set size (KB) = 955140 Test 037 cpld_control_c96_noaero_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/GNU/cpld_debug_noaero_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67899/cpld_debug_noaero_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/GNU/cpld_debug_noaero_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16562/cpld_debug_noaero_p8 Checking test 038 cpld_debug_noaero_p8 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1067,25 +1067,25 @@ Checking test 038 cpld_debug_noaero_p8 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK -0:The total amount of wall time = 374.638577 -0:The maximum resident set size (KB) = 970532 +0:The total amount of wall time = 374.398544 +0:The maximum resident set size (KB) = 970500 Test 038 cpld_debug_noaero_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/GNU/datm_cdeps_control_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67899/datm_cdeps_control_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/GNU/datm_cdeps_control_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16562/datm_cdeps_control_cfsr Checking test 039 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 = 173.412155 -0:The maximum resident set size (KB) = 649040 +0:The total amount of wall time = 172.916642 +0:The maximum resident set size (KB) = 644316 Test 039 datm_cdeps_control_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Fri Apr 29 11:51:28 MDT 2022 -Elapsed time: 00h:35m:06s. Have a nice day! +Mon May 2 12:11:33 MDT 2022 +Elapsed time: 00h:30m:05s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.intel.log b/tests/RegressionTests_cheyenne.intel.log old mode 100755 new mode 100644 index 3dedc3c16a..5e2af09af3 --- a/tests/RegressionTests_cheyenne.intel.log +++ b/tests/RegressionTests_cheyenne.intel.log @@ -1,25 +1,25 @@ -Fri Apr 29 11:02:26 MDT 2022 +Mon May 2 12:33:42 MDT 2022 Start Regression test -Compile 001 elapsed time 1080 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1,FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 433 seconds. -DAPP=S2SA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 001 elapsed time 1181 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1,FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 413 seconds. -DAPP=S2SA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON Compile 003 elapsed time 694 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 004 elapsed time 735 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 005 elapsed time 765 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 557 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DREPRO=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -Compile 007 elapsed time 379 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp,FV3_GFS_v16_thompson,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 320 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP,FV3_RAP_cires_ugwp,FV3_RAP_unified_ugwp,FV3_RAP_flake -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 334 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP_noah,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 010 elapsed time 284 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 011 elapsed time 799 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 012 elapsed time 781 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 004 elapsed time 746 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 005 elapsed time 770 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 581 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 376 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp,FV3_GFS_v16_thompson,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 315 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP,FV3_RAP_cires_ugwp,FV3_RAP_unified_ugwp,FV3_RAP_flake -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 323 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP_noah,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 010 elapsed time 290 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 011 elapsed time 905 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 012 elapsed time 896 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 013 elapsed time 438 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 014 elapsed time 225 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 015 elapsed time 668 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 016 elapsed time 618 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v16 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 elapsed time 217 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 015 elapsed time 782 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 016 elapsed time 638 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v16 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/cpld_control_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/cpld_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/cpld_control_p8 Checking test 001 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -85,14 +85,14 @@ Checking test 001 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK -0:The total amount of wall time = 475.701237 -0:The maximum resident set size (KB) = 2875088 +0:The total amount of wall time = 502.874931 +0:The maximum resident set size (KB) = 2875260 Test 001 cpld_control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/cpld_2threads_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/cpld_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/cpld_2threads_p8 Checking test 002 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -146,14 +146,14 @@ Checking test 002 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK -0:The total amount of wall time = 943.776268 -0:The maximum resident set size (KB) = 3270556 +0:The total amount of wall time = 951.706090 +0:The maximum resident set size (KB) = 3271000 Test 002 cpld_2threads_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/cpld_decomp_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/cpld_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/cpld_decomp_p8 Checking test 003 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -207,14 +207,14 @@ Checking test 003 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK -0:The total amount of wall time = 474.411553 -0:The maximum resident set size (KB) = 2867984 +0:The total amount of wall time = 497.813898 +0:The maximum resident set size (KB) = 2868324 Test 003 cpld_decomp_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/cpld_mpi_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/cpld_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/cpld_mpi_p8 Checking test 004 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -268,14 +268,14 @@ Checking test 004 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK -0:The total amount of wall time = 388.426763 -0:The maximum resident set size (KB) = 2789552 +0:The total amount of wall time = 375.308441 +0:The maximum resident set size (KB) = 2789364 Test 004 cpld_mpi_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/cpld_bmark_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/cpld_bmark_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/cpld_bmark_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/cpld_bmark_p8 Checking test 005 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -321,14 +321,14 @@ Checking test 005 cpld_bmark_p8 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK -0:The total amount of wall time = 1326.459931 +0:The total amount of wall time = 1179.288688 0:The maximum resident set size (KB) = 3905332 Test 005 cpld_bmark_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/cpld_control_c96_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/cpld_control_c96_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/cpld_control_c96_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/cpld_control_c96_p8 Checking test 006 cpld_control_c96_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -391,14 +391,14 @@ Checking test 006 cpld_control_c96_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 = 431.665338 -0:The maximum resident set size (KB) = 2870736 +0:The total amount of wall time = 489.623822 +0:The maximum resident set size (KB) = 2871280 Test 006 cpld_control_c96_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/cpld_control_c96_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/cpld_restart_c96_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/cpld_control_c96_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/cpld_restart_c96_p8 Checking test 007 cpld_restart_c96_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -449,14 +449,14 @@ Checking test 007 cpld_restart_c96_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 = 253.464550 -0:The maximum resident set size (KB) = 2858868 +0:The total amount of wall time = 258.715713 +0:The maximum resident set size (KB) = 2858780 Test 007 cpld_restart_c96_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/cpld_control_c192_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/cpld_control_c192_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/cpld_control_c192_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/cpld_control_c192_p8 Checking test 008 cpld_control_c192_p8 results .... Comparing sfcf036.tile1.nc .........OK Comparing sfcf036.tile2.nc .........OK @@ -507,14 +507,14 @@ Checking test 008 cpld_control_c192_p8 results .... Comparing RESTART/iced.2021-03-23-64800.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-64800.nc .........OK -0:The total amount of wall time = 1483.673090 -0:The maximum resident set size (KB) = 2984808 +0:The total amount of wall time = 1410.882124 +0:The maximum resident set size (KB) = 2985056 Test 008 cpld_control_c192_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/cpld_control_c192_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/cpld_restart_c192_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/cpld_control_c192_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/cpld_restart_c192_p8 Checking test 009 cpld_restart_c192_p8 results .... Comparing sfcf036.tile1.nc .........OK Comparing sfcf036.tile2.nc .........OK @@ -565,14 +565,14 @@ Checking test 009 cpld_restart_c192_p8 results .... Comparing RESTART/iced.2021-03-23-64800.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-64800.nc .........OK -0:The total amount of wall time = 967.133444 -0:The maximum resident set size (KB) = 3024536 +0:The total amount of wall time = 968.989197 +0:The maximum resident set size (KB) = 3024128 Test 009 cpld_restart_c192_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/cpld_control_c384_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/cpld_control_c384_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/cpld_control_c384_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/cpld_control_c384_p8 Checking test 010 cpld_control_c384_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -616,14 +616,14 @@ Checking test 010 cpld_control_c384_p8 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK -0:The total amount of wall time = 1449.793634 -0:The maximum resident set size (KB) = 3909648 +0:The total amount of wall time = 1518.125580 +0:The maximum resident set size (KB) = 3910128 Test 010 cpld_control_c384_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/cpld_control_c384_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/cpld_restart_c384_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/cpld_control_c384_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/cpld_restart_c384_p8 Checking test 011 cpld_restart_c384_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -667,14 +667,14 @@ Checking test 011 cpld_restart_c384_p8 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK -0:The total amount of wall time = 718.051870 -0:The maximum resident set size (KB) = 3990096 +0:The total amount of wall time = 956.794236 +0:The maximum resident set size (KB) = 3990548 Test 011 cpld_restart_c384_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/cpld_debug_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/cpld_debug_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/cpld_debug_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/cpld_debug_p8 Checking test 012 cpld_debug_p8 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -725,14 +725,14 @@ Checking test 012 cpld_debug_p8 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK -0:The total amount of wall time = 1168.021347 -0:The maximum resident set size (KB) = 2942968 +0:The total amount of wall time = 1169.957069 +0:The maximum resident set size (KB) = 2943184 Test 012 cpld_debug_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/control +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/control Checking test 013 control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -779,14 +779,14 @@ Checking test 013 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 146.959623 -0:The maximum resident set size (KB) = 443968 +0:The total amount of wall time = 146.482418 +0:The maximum resident set size (KB) = 444256 Test 013 control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/control_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/control_decomp Checking test 014 control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -829,28 +829,28 @@ Checking test 014 control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 150.977049 -0:The maximum resident set size (KB) = 442636 +0:The total amount of wall time = 150.100810 +0:The maximum resident set size (KB) = 442668 Test 014 control_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/control_2dwrtdecomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/control_2dwrtdecomp Checking test 015 control_2dwrtdecomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK -0:The total amount of wall time = 141.231331 -0:The maximum resident set size (KB) = 444788 +0:The total amount of wall time = 141.806033 +0:The maximum resident set size (KB) = 444732 Test 015 control_2dwrtdecomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/control_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/control_2threads Checking test 016 control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -893,14 +893,14 @@ Checking test 016 control_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 318.716793 -0:The maximum resident set size (KB) = 499852 +0:The total amount of wall time = 319.100681 +0:The maximum resident set size (KB) = 499944 Test 016 control_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/control_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/control_restart Checking test 017 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -939,14 +939,14 @@ Checking test 017 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 75.964812 -0:The maximum resident set size (KB) = 191980 +0:The total amount of wall time = 77.480532 +0:The maximum resident set size (KB) = 191564 Test 017 control_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/control_fhzero +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/control_fhzero Checking test 018 control_fhzero results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -989,14 +989,14 @@ Checking test 018 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.347422 -0:The maximum resident set size (KB) = 444176 +0:The total amount of wall time = 141.242222 +0:The maximum resident set size (KB) = 443956 Test 018 control_fhzero PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/control_CubedSphereGrid -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/control_CubedSphereGrid +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/control_CubedSphereGrid +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/control_CubedSphereGrid Checking test 019 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1023,14 +1023,14 @@ Checking test 019 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -0:The total amount of wall time = 143.127977 -0:The maximum resident set size (KB) = 444092 +0:The total amount of wall time = 141.404007 +0:The maximum resident set size (KB) = 444068 Test 019 control_CubedSphereGrid PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/control_latlon -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/control_latlon +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/control_latlon +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/control_latlon Checking test 020 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1041,17 +1041,17 @@ Checking test 020 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 145.585358 -0:The maximum resident set size (KB) = 444332 +0:The total amount of wall time = 144.787712 +0:The maximum resident set size (KB) = 444404 Test 020 control_latlon PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/control_wrtGauss_netcdf_parallel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/control_wrtGauss_netcdf_parallel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/control_wrtGauss_netcdf_parallel +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/control_wrtGauss_netcdf_parallel Checking test 021 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK + Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK @@ -1059,14 +1059,14 @@ Checking test 021 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 148.511455 -0:The maximum resident set size (KB) = 444308 +0:The total amount of wall time = 150.686029 +0:The maximum resident set size (KB) = 444340 Test 021 control_wrtGauss_netcdf_parallel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/control_c48 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/control_c48 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/control_c48 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/control_c48 Checking test 022 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1105,14 +1105,14 @@ Checking test 022 control_c48 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 421.678451 -0:The maximum resident set size (KB) = 630344 +0:The total amount of wall time = 429.157799 +0:The maximum resident set size (KB) = 630496 Test 022 control_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/control_c192 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/control_c192 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/control_c192 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/control_c192 Checking test 023 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1123,14 +1123,14 @@ Checking test 023 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 594.483737 -0:The maximum resident set size (KB) = 545548 +0:The total amount of wall time = 604.310108 +0:The maximum resident set size (KB) = 545924 Test 023 control_c192 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/control_c384 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/control_c384 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/control_c384 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/control_c384 Checking test 024 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1141,14 +1141,14 @@ Checking test 024 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 1087.298383 -0:The maximum resident set size (KB) = 801432 +0:The total amount of wall time = 1096.896654 +0:The maximum resident set size (KB) = 801368 Test 024 control_c384 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/control_c384gdas -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/control_c384gdas +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/control_c384gdas +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/control_c384gdas Checking test 025 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1191,14 +1191,14 @@ Checking test 025 control_c384gdas results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 947.168941 -0:The maximum resident set size (KB) = 958820 +0:The total amount of wall time = 943.688257 +0:The maximum resident set size (KB) = 958844 Test 025 control_c384gdas PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/control_stochy -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/control_stochy +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/control_stochy +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/control_stochy Checking test 026 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1209,28 +1209,28 @@ Checking test 026 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 96.446937 -0:The maximum resident set size (KB) = 446764 +0:The total amount of wall time = 97.829442 +0:The maximum resident set size (KB) = 447104 Test 026 control_stochy PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/control_stochy -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/control_stochy_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/control_stochy +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/control_stochy_restart Checking test 027 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.300806 -0:The maximum resident set size (KB) = 228196 +0:The total amount of wall time = 51.401379 +0:The maximum resident set size (KB) = 229220 Test 027 control_stochy_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/control_lndp -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/control_lndp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/control_lndp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/control_lndp Checking test 028 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1241,14 +1241,14 @@ Checking test 028 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 87.002420 -0:The maximum resident set size (KB) = 448484 +0:The total amount of wall time = 88.052476 +0:The maximum resident set size (KB) = 448308 Test 028 control_lndp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/control_iovr4 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/control_iovr4 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/control_iovr4 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/control_iovr4 Checking test 029 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1263,14 +1263,14 @@ Checking test 029 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 147.477835 -0:The maximum resident set size (KB) = 444068 +0:The total amount of wall time = 150.860877 +0:The maximum resident set size (KB) = 444164 Test 029 control_iovr4 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/control_iovr5 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/control_iovr5 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/control_iovr5 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/control_iovr5 Checking test 030 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1285,14 +1285,14 @@ Checking test 030 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 148.997764 -0:The maximum resident set size (KB) = 443920 +0:The total amount of wall time = 146.462072 +0:The maximum resident set size (KB) = 443940 Test 030 control_iovr5 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/control_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/control_p8 Checking test 031 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1339,14 +1339,14 @@ Checking test 031 control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 238.847479 -0:The maximum resident set size (KB) = 957424 +0:The total amount of wall time = 246.387958 +0:The maximum resident set size (KB) = 957456 Test 031 control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/control_p8_lndp -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/control_p8_lndp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/control_p8_lndp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/control_p8_lndp Checking test 032 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1365,14 +1365,14 @@ Checking test 032 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -0:The total amount of wall time = 454.357662 -0:The maximum resident set size (KB) = 960312 +0:The total amount of wall time = 446.065525 +0:The maximum resident set size (KB) = 960424 Test 032 control_p8_lndp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/control_restart_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/control_restart_p8 Checking test 033 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1411,14 +1411,14 @@ Checking test 033 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 = 121.015708 -0:The maximum resident set size (KB) = 740340 +0:The total amount of wall time = 130.333772 +0:The maximum resident set size (KB) = 740552 Test 033 control_restart_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/control_decomp_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/control_decomp_p8 Checking test 034 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1461,14 +1461,14 @@ Checking test 034 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 = 240.156326 -0:The maximum resident set size (KB) = 953180 +0:The total amount of wall time = 234.919287 +0:The maximum resident set size (KB) = 953300 Test 034 control_decomp_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/control_2threads_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/control_2threads_p8 Checking test 035 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1511,14 +1511,14 @@ Checking test 035 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 = 543.980384 -0:The maximum resident set size (KB) = 1097880 +0:The total amount of wall time = 558.854539 +0:The maximum resident set size (KB) = 1097760 Test 035 control_2threads_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/fv3_regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/regional_control +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/fv3_regional_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/regional_control Checking test 036 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1529,42 +1529,42 @@ Checking test 036 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -0:The total amount of wall time = 354.184266 -0:The maximum resident set size (KB) = 572028 +0:The total amount of wall time = 375.422916 +0:The maximum resident set size (KB) = 571800 Test 036 regional_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/fv3_regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/regional_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/fv3_regional_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/regional_restart Checking test 037 regional_restart results .... Comparing dynf024.nc .........OK Comparing phyf024.nc .........OK Comparing PRSLEV.GrbF24 .........OK Comparing NATLEV.GrbF24 .........OK -0:The total amount of wall time = 192.134626 -0:The maximum resident set size (KB) = 563344 +0:The total amount of wall time = 198.498825 +0:The maximum resident set size (KB) = 563540 Test 037 regional_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/fv3_regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/regional_control_2dwrtdecomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/fv3_regional_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/regional_control_2dwrtdecomp Checking test 038 regional_control_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK -0:The total amount of wall time = 351.166119 -0:The maximum resident set size (KB) = 571512 +0:The total amount of wall time = 367.243171 +0:The maximum resident set size (KB) = 571652 Test 038 regional_control_2dwrtdecomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/fv3_regional_noquilt -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/regional_noquilt +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/fv3_regional_noquilt +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/regional_noquilt Checking test 039 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1572,14 +1572,14 @@ Checking test 039 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 = 372.038845 -0:The maximum resident set size (KB) = 579580 +0:The total amount of wall time = 383.761188 +0:The maximum resident set size (KB) = 580036 Test 039 regional_noquilt PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/fv3_regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/regional_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/fv3_regional_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/regional_2threads Checking test 040 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1590,28 +1590,28 @@ Checking test 040 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -0:The total amount of wall time = 929.586128 -0:The maximum resident set size (KB) = 558192 +0:The total amount of wall time = 946.741153 +0:The maximum resident set size (KB) = 558240 Test 040 regional_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/fv3_regional_netcdf_parallel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/regional_netcdf_parallel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/fv3_regional_netcdf_parallel +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/regional_netcdf_parallel Checking test 041 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK + Comparing dynf024.nc ............ALT CHECK......OK Comparing phyf000.nc ............ALT CHECK......OK Comparing phyf024.nc .........OK -0:The total amount of wall time = 351.604889 -0:The maximum resident set size (KB) = 561996 +0:The total amount of wall time = 367.626341 +0:The maximum resident set size (KB) = 562096 Test 041 regional_netcdf_parallel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/fv3_regional_RRTMGP -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/regional_RRTMGP +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/fv3_regional_RRTMGP +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/regional_RRTMGP Checking test 042 regional_RRTMGP results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1622,14 +1622,14 @@ Checking test 042 regional_RRTMGP results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -0:The total amount of wall time = 506.987969 -0:The maximum resident set size (KB) = 681500 +0:The total amount of wall time = 525.206635 +0:The maximum resident set size (KB) = 681788 Test 042 regional_RRTMGP PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/fv3_regional_3km -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/regional_3km +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/fv3_regional_3km +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/regional_3km Checking test 043 regional_3km results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1640,14 +1640,14 @@ Checking test 043 regional_3km results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 298.748570 -0:The maximum resident set size (KB) = 594864 +0:The total amount of wall time = 312.268392 +0:The maximum resident set size (KB) = 594920 Test 043 regional_3km PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/rap_control +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/rap_control Checking test 044 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1694,14 +1694,14 @@ Checking test 044 rap_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 415.724281 -0:The maximum resident set size (KB) = 814172 +0:The total amount of wall time = 468.377899 +0:The maximum resident set size (KB) = 814144 Test 044 rap_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/rap_rrtmgp -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/rap_rrtmgp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/rap_rrtmgp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/rap_rrtmgp Checking test 045 rap_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1748,14 +1748,14 @@ Checking test 045 rap_rrtmgp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 465.129422 -0:The maximum resident set size (KB) = 940212 +0:The total amount of wall time = 537.891391 +0:The maximum resident set size (KB) = 940564 Test 045 rap_rrtmgp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/regional_spp_sppt_shum_skeb -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/regional_spp_sppt_shum_skeb +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/regional_spp_sppt_shum_skeb +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/regional_spp_sppt_shum_skeb Checking test 046 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -1766,14 +1766,14 @@ Checking test 046 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -0:The total amount of wall time = 628.470924 -0:The maximum resident set size (KB) = 944188 +0:The total amount of wall time = 653.336740 +0:The maximum resident set size (KB) = 944408 Test 046 regional_spp_sppt_shum_skeb PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/rap_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/rap_2threads Checking test 047 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1820,14 +1820,14 @@ Checking test 047 rap_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 876.960188 -0:The maximum resident set size (KB) = 878728 +0:The total amount of wall time = 970.790914 +0:The maximum resident set size (KB) = 878924 Test 047 rap_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/rap_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/rap_restart Checking test 048 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1866,14 +1866,14 @@ Checking test 048 rap_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 209.265546 +0:The total amount of wall time = 238.837737 0:The maximum resident set size (KB) = 565956 Test 048 rap_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/rap_sfcdiff +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/rap_sfcdiff +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/rap_sfcdiff Checking test 049 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1920,14 +1920,14 @@ Checking test 049 rap_sfcdiff results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 413.938963 -0:The maximum resident set size (KB) = 813304 +0:The total amount of wall time = 467.652826 +0:The maximum resident set size (KB) = 813408 Test 049 rap_sfcdiff PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/rap_sfcdiff_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/rap_sfcdiff +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/rap_sfcdiff_restart Checking test 050 rap_sfcdiff_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1966,14 +1966,14 @@ Checking test 050 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 = 206.776621 -0:The maximum resident set size (KB) = 565532 +0:The total amount of wall time = 240.381975 +0:The maximum resident set size (KB) = 566640 Test 050 rap_sfcdiff_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/hrrr_control +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/hrrr_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/hrrr_control Checking test 051 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2020,14 +2020,14 @@ Checking test 051 hrrr_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 399.847082 -0:The maximum resident set size (KB) = 812816 +0:The total amount of wall time = 446.607729 +0:The maximum resident set size (KB) = 812500 Test 051 hrrr_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/rrfs_v1beta -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/rrfs_v1beta +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/rrfs_v1beta +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/rrfs_v1beta Checking test 052 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2074,14 +2074,14 @@ Checking test 052 rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 407.013831 -0:The maximum resident set size (KB) = 808892 +0:The total amount of wall time = 460.632794 +0:The maximum resident set size (KB) = 809236 Test 052 rrfs_v1beta PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/rrfs_v1nssl -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/rrfs_v1nssl +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/rrfs_v1nssl +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/rrfs_v1nssl Checking test 053 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2096,14 +2096,14 @@ Checking test 053 rrfs_v1nssl results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 508.637880 -0:The maximum resident set size (KB) = 499072 +0:The total amount of wall time = 578.573068 +0:The maximum resident set size (KB) = 499076 Test 053 rrfs_v1nssl PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/rrfs_v1nssl_nohailnoccn +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/rrfs_v1nssl_nohailnoccn Checking test 054 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2118,14 +2118,14 @@ Checking test 054 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 498.677748 -0:The maximum resident set size (KB) = 491876 +0:The total amount of wall time = 559.613982 +0:The maximum resident set size (KB) = 492172 Test 054 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/rrfs_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/rrfs_conus13km_hrrr_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/rrfs_conus13km_hrrr_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/rrfs_conus13km_hrrr_warm Checking test 055 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2134,14 +2134,14 @@ Checking test 055 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 181.030680 -0:The maximum resident set size (KB) = 642448 +0:The total amount of wall time = 195.882619 +0:The maximum resident set size (KB) = 642604 Test 055 rrfs_conus13km_hrrr_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/rrfs_conus13km_radar_tten_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/rrfs_conus13km_radar_tten_warm Checking test 056 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2150,14 +2150,14 @@ Checking test 056 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 186.165669 -0:The maximum resident set size (KB) = 644600 +0:The total amount of wall time = 200.800272 +0:The maximum resident set size (KB) = 644940 Test 056 rrfs_conus13km_radar_tten_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/control_rrtmgp -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/control_rrtmgp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/control_rrtmgp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/control_rrtmgp Checking test 057 control_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2168,14 +2168,14 @@ Checking test 057 control_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 261.736983 -0:The maximum resident set size (KB) = 597364 +0:The total amount of wall time = 242.791198 +0:The maximum resident set size (KB) = 597796 Test 057 control_rrtmgp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/control_rrtmgp_c192 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/control_rrtmgp_c192 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/control_rrtmgp_c192 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/control_rrtmgp_c192 Checking test 058 control_rrtmgp_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2186,14 +2186,14 @@ Checking test 058 control_rrtmgp_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 640.384720 -0:The maximum resident set size (KB) = 798528 +0:The total amount of wall time = 696.813179 +0:The maximum resident set size (KB) = 798716 Test 058 control_rrtmgp_c192 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/control_csawmg -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/control_csawmg +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/control_csawmg +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/control_csawmg Checking test 059 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2204,14 +2204,14 @@ Checking test 059 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 388.764773 -0:The maximum resident set size (KB) = 523824 +0:The total amount of wall time = 393.911200 +0:The maximum resident set size (KB) = 523708 Test 059 control_csawmg PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/control_csawmgt -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/control_csawmgt +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/control_csawmgt +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/control_csawmgt Checking test 060 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2222,14 +2222,14 @@ Checking test 060 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 385.944436 -0:The maximum resident set size (KB) = 522472 +0:The total amount of wall time = 406.070068 +0:The maximum resident set size (KB) = 523048 Test 060 control_csawmgt PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/control_flake -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/control_flake +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/control_flake +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/control_flake Checking test 061 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2240,14 +2240,14 @@ Checking test 061 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 270.515145 -0:The maximum resident set size (KB) = 518360 +0:The total amount of wall time = 268.005936 +0:The maximum resident set size (KB) = 518860 Test 061 control_flake PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/control_ras -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/control_ras +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/control_ras +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/control_ras Checking test 062 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2258,14 +2258,14 @@ Checking test 062 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 210.050288 -0:The maximum resident set size (KB) = 479948 +0:The total amount of wall time = 207.971632 +0:The maximum resident set size (KB) = 479752 Test 062 control_ras PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/control_thompson -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/control_thompson +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/control_thompson +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/control_thompson Checking test 063 control_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2276,14 +2276,14 @@ Checking test 063 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 264.906101 -0:The maximum resident set size (KB) = 829792 +0:The total amount of wall time = 273.961454 +0:The maximum resident set size (KB) = 829616 Test 063 control_thompson PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/control_thompson_no_aero -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/control_thompson_no_aero +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/control_thompson_no_aero +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/control_thompson_no_aero Checking test 064 control_thompson_no_aero results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2294,54 +2294,54 @@ Checking test 064 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 252.866581 -0:The maximum resident set size (KB) = 826228 +0:The total amount of wall time = 260.750148 +0:The maximum resident set size (KB) = 826536 Test 064 control_thompson_no_aero PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/control_wam_repro -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/control_wam_repro +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/control_wam +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/control_wam Checking test 065 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -0:The total amount of wall time = 139.033987 -0:The maximum resident set size (KB) = 204368 +0:The total amount of wall time = 131.113931 +0:The maximum resident set size (KB) = 204420 Test 065 control_wam PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/control_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/control_debug Checking test 066 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 = 157.495013 +0:The total amount of wall time = 159.408131 0:The maximum resident set size (KB) = 612720 Test 066 control_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/control_2threads_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/control_2threads_debug Checking test 067 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 = 275.577369 -0:The maximum resident set size (KB) = 662640 +0:The total amount of wall time = 275.492389 +0:The maximum resident set size (KB) = 662380 Test 067 control_2threads_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/control_CubedSphereGrid_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/control_CubedSphereGrid_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/control_CubedSphereGrid_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/control_CubedSphereGrid_debug Checking test 068 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2368,429 +2368,429 @@ Checking test 068 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -0:The total amount of wall time = 171.145817 -0:The maximum resident set size (KB) = 612556 +0:The total amount of wall time = 172.549736 +0:The maximum resident set size (KB) = 612572 Test 068 control_CubedSphereGrid_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/control_wrtGauss_netcdf_parallel_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/control_wrtGauss_netcdf_parallel_debug Checking test 069 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 = 161.754068 -0:The maximum resident set size (KB) = 612564 +0:The total amount of wall time = 159.854668 +0:The maximum resident set size (KB) = 612680 Test 069 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/control_stochy_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/control_stochy_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/control_stochy_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/control_stochy_debug Checking test 070 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.555545 -0:The maximum resident set size (KB) = 617604 +0:The total amount of wall time = 179.574717 +0:The maximum resident set size (KB) = 617828 Test 070 control_stochy_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/control_lndp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/control_lndp_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/control_lndp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/control_lndp_debug Checking test 071 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 = 162.374662 -0:The maximum resident set size (KB) = 616688 +0:The total amount of wall time = 161.593007 +0:The maximum resident set size (KB) = 616780 Test 071 control_lndp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/control_rrtmgp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/control_rrtmgp_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/control_rrtmgp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/control_rrtmgp_debug Checking test 072 control_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 = 175.613025 -0:The maximum resident set size (KB) = 742296 +0:The total amount of wall time = 173.578783 +0:The maximum resident set size (KB) = 742284 Test 072 control_rrtmgp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/control_csawmg_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/control_csawmg_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/control_csawmg_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/control_csawmg_debug Checking test 073 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 = 252.080902 -0:The maximum resident set size (KB) = 661808 +0:The total amount of wall time = 254.277653 +0:The maximum resident set size (KB) = 661584 Test 073 control_csawmg_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/control_csawmgt_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/control_csawmgt_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/control_csawmgt_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/control_csawmgt_debug Checking test 074 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 = 249.328515 -0:The maximum resident set size (KB) = 661800 +0:The total amount of wall time = 248.287601 +0:The maximum resident set size (KB) = 661724 Test 074 control_csawmgt_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/control_ras_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/control_ras_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/control_ras_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/control_ras_debug Checking test 075 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 = 163.829041 -0:The maximum resident set size (KB) = 624100 +0:The total amount of wall time = 163.879939 +0:The maximum resident set size (KB) = 624180 Test 075 control_ras_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/control_diag_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/control_diag_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/control_diag_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/control_diag_debug Checking test 076 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 = 165.385278 -0:The maximum resident set size (KB) = 669652 +0:The total amount of wall time = 165.749631 +0:The maximum resident set size (KB) = 669600 Test 076 control_diag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/control_debug_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/control_debug_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/control_debug_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/control_debug_p8 Checking test 077 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 = 191.313550 -0:The maximum resident set size (KB) = 1127568 +0:The total amount of wall time = 192.709876 +0:The maximum resident set size (KB) = 1127640 Test 077 control_debug_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/control_thompson_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/control_thompson_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/control_thompson_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/control_thompson_debug Checking test 078 control_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 = 187.186866 -0:The maximum resident set size (KB) = 971764 +0:The total amount of wall time = 188.786902 +0:The maximum resident set size (KB) = 972028 Test 078 control_thompson_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/control_thompson_no_aero_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/control_thompson_no_aero_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/control_thompson_no_aero_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/control_thompson_no_aero_debug Checking test 079 control_thompson_no_aero_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 = 178.822263 -0:The maximum resident set size (KB) = 969060 +0:The total amount of wall time = 180.805391 +0:The maximum resident set size (KB) = 969172 Test 079 control_thompson_no_aero_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/control_thompson_debug_extdiag -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/control_thompson_extdiag_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/control_thompson_debug_extdiag +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/control_thompson_extdiag_debug Checking test 080 control_thompson_extdiag_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 = 193.005932 -0:The maximum resident set size (KB) = 1000840 +0:The total amount of wall time = 194.089581 +0:The maximum resident set size (KB) = 1000472 Test 080 control_thompson_extdiag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/control_thompson_progcld_thompson_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/control_thompson_progcld_thompson_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/control_thompson_progcld_thompson_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/control_thompson_progcld_thompson_debug Checking test 081 control_thompson_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 = 185.990477 -0:The maximum resident set size (KB) = 971896 +0:The total amount of wall time = 185.992835 +0:The maximum resident set size (KB) = 972020 Test 081 control_thompson_progcld_thompson_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/fv3_regional_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/regional_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/fv3_regional_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/regional_debug Checking test 082 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 = 258.467012 -0:The maximum resident set size (KB) = 594488 +0:The total amount of wall time = 258.911381 +0:The maximum resident set size (KB) = 594644 Test 082 regional_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/rap_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/rap_control_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/rap_control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/rap_control_debug Checking test 083 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 = 286.267726 -0:The maximum resident set size (KB) = 980148 +0:The total amount of wall time = 285.585569 +0:The maximum resident set size (KB) = 980288 Test 083 rap_control_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/rap_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/rap_unified_drag_suite_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/rap_control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/rap_unified_drag_suite_debug Checking test 084 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.991364 -0:The maximum resident set size (KB) = 980076 +0:The total amount of wall time = 285.590989 +0:The maximum resident set size (KB) = 980180 Test 084 rap_unified_drag_suite_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/rap_diag_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/rap_diag_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/rap_diag_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/rap_diag_debug Checking test 085 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 = 304.335944 -0:The maximum resident set size (KB) = 1062256 +0:The total amount of wall time = 298.826065 +0:The maximum resident set size (KB) = 1062368 Test 085 rap_diag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/rap_cires_ugwp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/rap_cires_ugwp_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/rap_cires_ugwp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/rap_cires_ugwp_debug Checking test 086 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 = 292.813912 -0:The maximum resident set size (KB) = 978720 +0:The total amount of wall time = 293.538422 +0:The maximum resident set size (KB) = 978448 Test 086 rap_cires_ugwp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/rap_cires_ugwp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/rap_unified_ugwp_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/rap_cires_ugwp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/rap_unified_ugwp_debug Checking test 087 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 = 293.282954 -0:The maximum resident set size (KB) = 979908 +0:The total amount of wall time = 292.960131 +0:The maximum resident set size (KB) = 980404 Test 087 rap_unified_ugwp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/rap_lndp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/rap_lndp_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/rap_lndp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/rap_lndp_debug Checking test 088 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 = 287.429445 -0:The maximum resident set size (KB) = 981148 +0:The total amount of wall time = 290.650341 +0:The maximum resident set size (KB) = 981244 Test 088 rap_lndp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/rap_flake_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/rap_flake_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/rap_flake_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/rap_flake_debug Checking test 089 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 = 288.604254 -0:The maximum resident set size (KB) = 980364 +0:The total amount of wall time = 290.623231 +0:The maximum resident set size (KB) = 980272 -Test 089 rap_flake_debug PASS Tries: 2 +Test 089 rap_flake_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/rap_progcld_thompson_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/rap_progcld_thompson_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/rap_progcld_thompson_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/rap_progcld_thompson_debug Checking test 090 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 = 287.225488 -0:The maximum resident set size (KB) = 979832 +0:The total amount of wall time = 285.316107 +0:The maximum resident set size (KB) = 980380 Test 090 rap_progcld_thompson_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/rap_noah_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/rap_noah_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/rap_noah_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/rap_noah_debug Checking test 091 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 = 281.642141 -0:The maximum resident set size (KB) = 979384 +0:The total amount of wall time = 280.469477 +0:The maximum resident set size (KB) = 979556 Test 091 rap_noah_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/rap_rrtmgp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/rap_rrtmgp_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/rap_rrtmgp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/rap_rrtmgp_debug Checking test 092 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 = 481.146368 -0:The maximum resident set size (KB) = 1109484 +0:The total amount of wall time = 482.667518 +0:The maximum resident set size (KB) = 1109672 Test 092 rap_rrtmgp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/rap_sfcdiff_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/rap_sfcdiff_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/rap_sfcdiff_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/rap_sfcdiff_debug Checking test 093 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.746414 -0:The maximum resident set size (KB) = 980048 +0:The total amount of wall time = 286.704350 +0:The maximum resident set size (KB) = 980456 Test 093 rap_sfcdiff_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/rap_noah_sfcdiff_cires_ugwp_debug Checking test 094 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 = 472.588665 -0:The maximum resident set size (KB) = 977744 +0:The total amount of wall time = 471.302593 +0:The maximum resident set size (KB) = 977812 Test 094 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/rrfs_v1beta_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/rrfs_v1beta_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/rrfs_v1beta_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/rrfs_v1beta_debug Checking test 095 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 = 283.674528 -0:The maximum resident set size (KB) = 977264 +0:The total amount of wall time = 289.953554 +0:The maximum resident set size (KB) = 977396 Test 095 rrfs_v1beta_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/control_wam_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/control_wam_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/control_wam_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/control_wam_debug Checking test 096 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -0:The total amount of wall time = 296.323789 -0:The maximum resident set size (KB) = 237224 +0:The total amount of wall time = 296.917008 +0:The maximum resident set size (KB) = 236808 Test 096 control_wam_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/hafs_regional_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/hafs_regional_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/hafs_regional_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/hafs_regional_atm Checking test 097 hafs_regional_atm results .... Comparing atmf006.nc .........OK - Comparing sfcf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -0:The total amount of wall time = 540.767460 -0:The maximum resident set size (KB) = 676176 +0:The total amount of wall time = 546.357365 +0:The maximum resident set size (KB) = 676848 Test 097 hafs_regional_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/hafs_regional_atm_thompson_gfdlsf +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/hafs_regional_atm_thompson_gfdlsf Checking test 098 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc .........OK -0:The total amount of wall time = 625.381267 -0:The maximum resident set size (KB) = 1038216 +0:The total amount of wall time = 659.638562 +0:The maximum resident set size (KB) = 1037828 Test 098 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/hafs_regional_atm_ocn -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/hafs_regional_atm_ocn +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/hafs_regional_atm_ocn +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/hafs_regional_atm_ocn Checking test 099 hafs_regional_atm_ocn results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc .........OK @@ -2799,28 +2799,28 @@ Checking test 099 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 = 412.760568 -0:The maximum resident set size (KB) = 692164 +0:The total amount of wall time = 410.135523 +0:The maximum resident set size (KB) = 692448 Test 099 hafs_regional_atm_ocn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/hafs_regional_atm_wav -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/hafs_regional_atm_wav +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/hafs_regional_atm_wav +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/hafs_regional_atm_wav Checking test 100 hafs_regional_atm_wav results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc .........OK Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK -0:The total amount of wall time = 1007.801896 -0:The maximum resident set size (KB) = 689496 +0:The total amount of wall time = 948.509447 +0:The maximum resident set size (KB) = 689720 Test 100 hafs_regional_atm_wav PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/hafs_regional_atm_ocn_wav -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/hafs_regional_atm_ocn_wav +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/hafs_regional_atm_ocn_wav +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/hafs_regional_atm_ocn_wav Checking test 101 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc .........OK @@ -2829,58 +2829,58 @@ Checking test 101 hafs_regional_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK -0:The total amount of wall time = 1051.787753 -0:The maximum resident set size (KB) = 690532 +0:The total amount of wall time = 1022.328949 +0:The maximum resident set size (KB) = 689840 Test 101 hafs_regional_atm_ocn_wav PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/hafs_regional_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/hafs_regional_1nest_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/hafs_regional_1nest_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/hafs_regional_1nest_atm Checking test 102 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc ............ALT CHECK......OK Comparing sfc.nest02.f006.nc ............ALT CHECK......OK -0:The total amount of wall time = 1071.659903 -0:The maximum resident set size (KB) = 273960 +0:The total amount of wall time = 1078.725450 +0:The maximum resident set size (KB) = 274612 Test 102 hafs_regional_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/hafs_regional_telescopic_2nests_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/hafs_regional_telescopic_2nests_atm Checking test 103 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc ............ALT CHECK......OK Comparing sfc.nest02.f006.nc .........OK Comparing atm.nest03.f006.nc .........OK - Comparing sfc.nest03.f006.nc .........OK + Comparing sfc.nest03.f006.nc ............ALT CHECK......OK -0:The total amount of wall time = 1135.137738 -0:The maximum resident set size (KB) = 283708 +0:The total amount of wall time = 1146.374265 +0:The maximum resident set size (KB) = 283912 Test 103 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/hafs_global_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/hafs_global_1nest_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/hafs_global_1nest_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/hafs_global_1nest_atm Checking test 104 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc ............ALT CHECK......OK Comparing sfc.nest02.f006.nc ............ALT CHECK......OK -0:The total amount of wall time = 678.580501 -0:The maximum resident set size (KB) = 176312 +0:The total amount of wall time = 683.793559 +0:The maximum resident set size (KB) = 176308 Test 104 hafs_global_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/hafs_global_multiple_4nests_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/hafs_global_multiple_4nests_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/hafs_global_multiple_4nests_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/hafs_global_multiple_4nests_atm Checking test 105 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc .........OK @@ -2891,60 +2891,60 @@ Checking test 105 hafs_global_multiple_4nests_atm results .... Comparing sfc.nest04.f006.nc .........OK Comparing sfc.nest04.f006.nc .........OK Comparing atm.nest05.f006.nc .........OK - Comparing sfc.nest05.f006.nc ............ALT CHECK......OK + Comparing sfc.nest05.f006.nc .........OK -0:The total amount of wall time = 1275.601923 -0:The maximum resident set size (KB) = 238896 +0:The total amount of wall time = 1286.934554 +0:The maximum resident set size (KB) = 239232 Test 105 hafs_global_multiple_4nests_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/hafs_regional_specified_moving_1nest_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/hafs_regional_specified_moving_1nest_atm Checking test 106 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc ............ALT CHECK......OK Comparing sfc.nest02.f006.nc ............ALT CHECK......OK -0:The total amount of wall time = 595.682594 -0:The maximum resident set size (KB) = 281556 +0:The total amount of wall time = 602.948741 +0:The maximum resident set size (KB) = 281164 Test 106 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/hafs_regional_storm_following_1nest_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/hafs_regional_storm_following_1nest_atm Checking test 107 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc ............ALT CHECK......OK Comparing sfc.nest02.f006.nc ............ALT CHECK......OK -0:The total amount of wall time = 586.359394 -0:The maximum resident set size (KB) = 280732 +0:The total amount of wall time = 591.437176 +0:The maximum resident set size (KB) = 281204 Test 107 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/hafs_regional_storm_following_1nest_atm_ocn +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/hafs_regional_storm_following_1nest_atm_ocn Checking test 108 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK + Comparing atm.nest02.f006.nc ............ALT CHECK......OK Comparing sfc.nest02.f006.nc ............ALT CHECK......OK Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -0:The total amount of wall time = 596.725543 -0:The maximum resident set size (KB) = 287192 +0:The total amount of wall time = 601.036676 +0:The maximum resident set size (KB) = 287364 Test 108 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/hafs_regional_storm_following_1nest_atm_ocn_wav +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 109 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -2955,28 +2955,28 @@ Checking test 109 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 = 1327.453942 -0:The maximum resident set size (KB) = 292184 +0:The total amount of wall time = 1231.984174 +0:The maximum resident set size (KB) = 292884 Test 109 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/hafs_global_storm_following_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/hafs_global_storm_following_1nest_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/hafs_global_storm_following_1nest_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/hafs_global_storm_following_1nest_atm Checking test 110 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK + Comparing atm.nest02.f006.nc ............ALT CHECK......OK Comparing sfc.nest02.f006.nc ............ALT CHECK......OK -0:The total amount of wall time = 344.408198 -0:The maximum resident set size (KB) = 189236 +0:The total amount of wall time = 343.393290 +0:The maximum resident set size (KB) = 189720 Test 110 hafs_global_storm_following_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/hafs_regional_docn -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/hafs_regional_docn +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/hafs_regional_docn +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/hafs_regional_docn Checking test 111 hafs_regional_docn results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc .........OK @@ -2984,14 +2984,14 @@ Checking test 111 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 = 371.215344 -0:The maximum resident set size (KB) = 692016 +0:The total amount of wall time = 384.364596 +0:The maximum resident set size (KB) = 691704 Test 111 hafs_regional_docn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/hafs_regional_docn_oisst -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/hafs_regional_docn_oisst +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/hafs_regional_docn_oisst +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/hafs_regional_docn_oisst Checking test 112 hafs_regional_docn_oisst results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc .........OK @@ -2999,118 +2999,118 @@ Checking test 112 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 = 372.434308 -0:The maximum resident set size (KB) = 691644 +0:The total amount of wall time = 382.727810 +0:The maximum resident set size (KB) = 692188 Test 112 hafs_regional_docn_oisst PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/hafs_regional_datm_cdeps -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/hafs_regional_datm_cdeps +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/hafs_regional_datm_cdeps +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/hafs_regional_datm_cdeps Checking test 113 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 = 1310.085691 -0:The maximum resident set size (KB) = 870880 +0:The total amount of wall time = 1180.726654 +0:The maximum resident set size (KB) = 871028 Test 113 hafs_regional_datm_cdeps PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/datm_cdeps_control_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/datm_cdeps_control_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/datm_cdeps_control_cfsr Checking test 114 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 = 160.356827 -0:The maximum resident set size (KB) = 707112 +0:The total amount of wall time = 165.929692 +0:The maximum resident set size (KB) = 707644 Test 114 datm_cdeps_control_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/datm_cdeps_restart_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/datm_cdeps_control_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/datm_cdeps_restart_cfsr Checking test 115 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 = 100.526765 -0:The maximum resident set size (KB) = 696768 +0:The total amount of wall time = 101.037419 +0:The maximum resident set size (KB) = 696236 Test 115 datm_cdeps_restart_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/datm_cdeps_control_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/datm_cdeps_control_gefs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/datm_cdeps_control_gefs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/datm_cdeps_control_gefs Checking test 116 datm_cdeps_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 154.037454 -0:The maximum resident set size (KB) = 594152 +0:The total amount of wall time = 160.565799 +0:The maximum resident set size (KB) = 595216 Test 116 datm_cdeps_control_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/datm_cdeps_iau_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/datm_cdeps_iau_gefs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/datm_cdeps_iau_gefs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/datm_cdeps_iau_gefs Checking test 117 datm_cdeps_iau_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 162.090824 -0:The maximum resident set size (KB) = 593852 +0:The total amount of wall time = 161.961589 +0:The maximum resident set size (KB) = 594588 Test 117 datm_cdeps_iau_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/datm_cdeps_stochy_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/datm_cdeps_stochy_gefs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/datm_cdeps_stochy_gefs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/datm_cdeps_stochy_gefs Checking test 118 datm_cdeps_stochy_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 156.057588 -0:The maximum resident set size (KB) = 594352 +0:The total amount of wall time = 156.830025 +0:The maximum resident set size (KB) = 594416 Test 118 datm_cdeps_stochy_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/datm_cdeps_bulk_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/datm_cdeps_bulk_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/datm_cdeps_bulk_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/datm_cdeps_bulk_cfsr Checking test 119 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 = 166.515918 -0:The maximum resident set size (KB) = 696832 +0:The total amount of wall time = 161.220598 +0:The maximum resident set size (KB) = 696152 Test 119 datm_cdeps_bulk_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/datm_cdeps_bulk_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/datm_cdeps_bulk_gefs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/datm_cdeps_bulk_gefs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/datm_cdeps_bulk_gefs Checking test 120 datm_cdeps_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 159.702690 -0:The maximum resident set size (KB) = 594032 +0:The total amount of wall time = 159.059941 +0:The maximum resident set size (KB) = 594532 Test 120 datm_cdeps_bulk_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/datm_cdeps_mx025_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/datm_cdeps_mx025_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/datm_cdeps_mx025_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/datm_cdeps_mx025_cfsr Checking test 121 datm_cdeps_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -3119,14 +3119,14 @@ Checking test 121 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 = 335.395772 -0:The maximum resident set size (KB) = 513884 +0:The total amount of wall time = 351.483135 +0:The maximum resident set size (KB) = 522312 Test 121 datm_cdeps_mx025_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/datm_cdeps_mx025_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/datm_cdeps_mx025_gefs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/datm_cdeps_mx025_gefs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/datm_cdeps_mx025_gefs Checking test 122 datm_cdeps_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -3135,64 +3135,64 @@ Checking test 122 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-01-43200.nc .........OK -0:The total amount of wall time = 344.080967 -0:The maximum resident set size (KB) = 494116 +0:The total amount of wall time = 335.735012 +0:The maximum resident set size (KB) = 494936 Test 122 datm_cdeps_mx025_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/datm_cdeps_multiple_files_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/datm_cdeps_control_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/datm_cdeps_multiple_files_cfsr Checking test 123 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 = 165.352360 -0:The maximum resident set size (KB) = 696016 +0:The total amount of wall time = 165.182401 +0:The maximum resident set size (KB) = 696688 Test 123 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/datm_cdeps_3072x1536_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/datm_cdeps_3072x1536_cfsr Checking test 124 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 = 236.081794 -0:The maximum resident set size (KB) = 1846848 +0:The total amount of wall time = 237.273125 +0:The maximum resident set size (KB) = 1845600 Test 124 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/datm_cdeps_gfs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/datm_cdeps_gfs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/datm_cdeps_gfs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/datm_cdeps_gfs Checking test 125 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 = 251.083314 -0:The maximum resident set size (KB) = 1846000 +0:The total amount of wall time = 266.481052 +0:The maximum resident set size (KB) = 1846848 Test 125 datm_cdeps_gfs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/datm_cdeps_debug_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/datm_cdeps_debug_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/datm_cdeps_debug_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/datm_cdeps_debug_cfsr Checking test 126 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 = 456.008919 -0:The maximum resident set size (KB) = 704276 +0:The total amount of wall time = 454.556585 +0:The maximum resident set size (KB) = 704896 Test 126 datm_cdeps_debug_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/control_atmwav -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/control_atmwav +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/control_atmwav +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/control_atmwav Checking test 127 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -3236,14 +3236,14 @@ Checking test 127 control_atmwav results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK -0:The total amount of wall time = 135.772861 -0:The maximum resident set size (KB) = 466676 +0:The total amount of wall time = 137.071425 +0:The maximum resident set size (KB) = 466876 Test 127 control_atmwav PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220425/INTEL/control_atm_aerosols -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_26918/control_atm_aerosols +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220502/INTEL/control_atm_aerosols +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_22237/control_atm_aerosols Checking test 128 control_atm_aerosols results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3290,12 +3290,12 @@ Checking test 128 control_atm_aerosols results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 359.655843 -0:The maximum resident set size (KB) = 1775760 +0:The total amount of wall time = 364.857881 +0:The maximum resident set size (KB) = 1775684 Test 128 control_atm_aerosols PASS REGRESSION TEST WAS SUCCESSFUL -Fri Apr 29 13:01:50 MDT 2022 -Elapsed time: 01h:59m:25s. Have a nice day! +Mon May 2 14:08:08 MDT 2022 +Elapsed time: 01h:34m:26s. Have a nice day! diff --git a/tests/RegressionTests_gaea.intel.log b/tests/RegressionTests_gaea.intel.log index 0b468b59bb..53074ee5d3 100644 --- a/tests/RegressionTests_gaea.intel.log +++ b/tests/RegressionTests_gaea.intel.log @@ -1,25 +1,25 @@ -Fri Apr 29 14:34:28 EDT 2022 +Mon May 2 14:28:37 EDT 2022 Start Regression test -Compile 001 elapsed time 622 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1,FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 271 seconds. -DAPP=S2SA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 001 elapsed time 639 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1,FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 269 seconds. -DAPP=S2SA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON Compile 003 elapsed time 425 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 004 elapsed time 618 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 005 elapsed time 480 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 413 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DREPRO=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -Compile 007 elapsed time 231 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp,FV3_GFS_v16_thompson,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 218 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP,FV3_RAP_cires_ugwp,FV3_RAP_unified_ugwp,FV3_RAP_flake -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 231 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP_noah,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 010 elapsed time 224 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 011 elapsed time 482 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 012 elapsed time 478 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 013 elapsed time 270 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 014 elapsed time 145 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 015 elapsed time 434 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 016 elapsed time 412 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v16 -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/cpld_control_p8 +Compile 004 elapsed time 444 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 005 elapsed time 420 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 397 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 224 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp,FV3_GFS_v16_thompson,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 207 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP,FV3_RAP_cires_ugwp,FV3_RAP_unified_ugwp,FV3_RAP_flake -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 209 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP_noah,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 010 elapsed time 213 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 011 elapsed time 589 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 012 elapsed time 594 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 013 elapsed time 296 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 014 elapsed time 153 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 015 elapsed time 552 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 016 elapsed time 422 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v16 -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/cpld_control_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/cpld_control_p8 Checking test 001 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -85,14 +85,14 @@ Checking test 001 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK - 0: The total amount of wall time = 482.180575 - 0: The maximum resident set size (KB) = 1160596 + 0: The total amount of wall time = 426.656970 + 0: The maximum resident set size (KB) = 1166684 Test 001 cpld_control_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/cpld_2threads_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/cpld_control_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/cpld_2threads_p8 Checking test 002 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -146,14 +146,14 @@ Checking test 002 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK - 0: The total amount of wall time = 614.491153 - 0: The maximum resident set size (KB) = 1644132 + 0: The total amount of wall time = 593.613804 + 0: The maximum resident set size (KB) = 1644656 Test 002 cpld_2threads_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/cpld_decomp_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/cpld_control_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/cpld_decomp_p8 Checking test 003 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -207,14 +207,14 @@ Checking test 003 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK - 0: The total amount of wall time = 463.811551 - 0: The maximum resident set size (KB) = 1337980 + 0: The total amount of wall time = 413.584293 + 0: The maximum resident set size (KB) = 1338680 Test 003 cpld_decomp_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/cpld_mpi_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/cpld_control_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/cpld_mpi_p8 Checking test 004 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -268,14 +268,14 @@ Checking test 004 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK - 0: The total amount of wall time = 389.598480 - 0: The maximum resident set size (KB) = 1055712 + 0: The total amount of wall time = 354.510410 + 0: The maximum resident set size (KB) = 1069608 Test 004 cpld_mpi_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/cpld_bmark_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/cpld_bmark_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/cpld_bmark_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/cpld_bmark_p8 Checking test 005 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -321,14 +321,14 @@ Checking test 005 cpld_bmark_p8 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - 0: The total amount of wall time = 1325.791118 - 0: The maximum resident set size (KB) = 2928716 + 0: The total amount of wall time = 1335.045243 + 0: The maximum resident set size (KB) = 2928516 Test 005 cpld_bmark_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/cpld_control_c96_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/cpld_control_c96_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/cpld_control_c96_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/cpld_control_c96_p8 Checking test 006 cpld_control_c96_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -391,14 +391,14 @@ Checking test 006 cpld_control_c96_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 = 414.117948 - 0: The maximum resident set size (KB) = 1184192 + 0: The total amount of wall time = 427.266280 + 0: The maximum resident set size (KB) = 1161544 Test 006 cpld_control_c96_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/cpld_control_c96_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/cpld_restart_c96_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/cpld_control_c96_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/cpld_restart_c96_p8 Checking test 007 cpld_restart_c96_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -449,14 +449,14 @@ Checking test 007 cpld_restart_c96_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 = 236.641338 - 0: The maximum resident set size (KB) = 1156120 + 0: The total amount of wall time = 248.843834 + 0: The maximum resident set size (KB) = 1172720 Test 007 cpld_restart_c96_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/cpld_control_c192_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/cpld_control_c192_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/cpld_control_c192_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/cpld_control_c192_p8 Checking test 008 cpld_control_c192_p8 results .... Comparing sfcf036.tile1.nc .........OK Comparing sfcf036.tile2.nc .........OK @@ -507,14 +507,14 @@ Checking test 008 cpld_control_c192_p8 results .... Comparing RESTART/iced.2021-03-23-64800.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-64800.nc .........OK - 0: The total amount of wall time = 1407.248073 - 0: The maximum resident set size (KB) = 1334452 + 0: The total amount of wall time = 1387.689759 + 0: The maximum resident set size (KB) = 1334952 -Test 008 cpld_control_c192_p8 PASS +Test 008 cpld_control_c192_p8 PASS Tries: 2 -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/cpld_control_c192_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/cpld_restart_c192_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/cpld_control_c192_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/cpld_restart_c192_p8 Checking test 009 cpld_restart_c192_p8 results .... Comparing sfcf036.tile1.nc .........OK Comparing sfcf036.tile2.nc .........OK @@ -565,14 +565,14 @@ Checking test 009 cpld_restart_c192_p8 results .... Comparing RESTART/iced.2021-03-23-64800.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-64800.nc .........OK - 0: The total amount of wall time = 965.027564 - 0: The maximum resident set size (KB) = 1515024 + 0: The total amount of wall time = 939.044056 + 0: The maximum resident set size (KB) = 1515224 Test 009 cpld_restart_c192_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/cpld_control_c384_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/cpld_control_c384_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/cpld_control_c384_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/cpld_control_c384_p8 Checking test 010 cpld_control_c384_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -616,14 +616,14 @@ Checking test 010 cpld_control_c384_p8 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK - 0: The total amount of wall time = 1454.231979 - 0: The maximum resident set size (KB) = 2932368 + 0: The total amount of wall time = 1478.412239 + 0: The maximum resident set size (KB) = 2906188 Test 010 cpld_control_c384_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/cpld_control_c384_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/cpld_restart_c384_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/cpld_control_c384_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/cpld_restart_c384_p8 Checking test 011 cpld_restart_c384_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -667,14 +667,14 @@ Checking test 011 cpld_restart_c384_p8 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK - 0: The total amount of wall time = 916.244930 - 0: The maximum resident set size (KB) = 2954884 + 0: The total amount of wall time = 895.981103 + 0: The maximum resident set size (KB) = 2924108 Test 011 cpld_restart_c384_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/cpld_debug_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/cpld_debug_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/cpld_debug_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/cpld_debug_p8 Checking test 012 cpld_debug_p8 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -725,14 +725,14 @@ Checking test 012 cpld_debug_p8 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK - 0: The total amount of wall time = 1085.720451 - 0: The maximum resident set size (KB) = 1260828 + 0: The total amount of wall time = 1070.669195 + 0: The maximum resident set size (KB) = 1261028 Test 012 cpld_debug_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/control +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/control Checking test 013 control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -779,14 +779,14 @@ Checking test 013 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 156.234064 - 0: The maximum resident set size (KB) = 435496 + 0: The total amount of wall time = 137.569900 + 0: The maximum resident set size (KB) = 435668 Test 013 control PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/control_decomp +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/control_decomp Checking test 014 control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -829,28 +829,28 @@ Checking test 014 control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 138.970760 - 0: The maximum resident set size (KB) = 434788 + 0: The total amount of wall time = 142.697279 + 0: The maximum resident set size (KB) = 435256 Test 014 control_decomp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/control_2dwrtdecomp +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/control_2dwrtdecomp Checking test 015 control_2dwrtdecomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 123.770712 - 0: The maximum resident set size (KB) = 434972 + 0: The total amount of wall time = 126.340451 + 0: The maximum resident set size (KB) = 435636 Test 015 control_2dwrtdecomp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/control_2threads +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/control_2threads Checking test 016 control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -893,14 +893,14 @@ Checking test 016 control_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 167.910678 - 0: The maximum resident set size (KB) = 484908 + 0: The total amount of wall time = 169.750837 + 0: The maximum resident set size (KB) = 487948 Test 016 control_2threads PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/control_restart +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/control_restart Checking test 017 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -939,14 +939,14 @@ Checking test 017 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 77.676781 - 0: The maximum resident set size (KB) = 170696 + 0: The total amount of wall time = 97.846368 + 0: The maximum resident set size (KB) = 170836 Test 017 control_restart PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/control_fhzero +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/control_fhzero Checking test 018 control_fhzero results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -989,14 +989,14 @@ Checking test 018 control_fhzero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 125.493450 - 0: The maximum resident set size (KB) = 435360 + 0: The total amount of wall time = 138.630235 + 0: The maximum resident set size (KB) = 435612 Test 018 control_fhzero PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_CubedSphereGrid -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/control_CubedSphereGrid +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_CubedSphereGrid +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/control_CubedSphereGrid Checking test 019 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1023,14 +1023,14 @@ Checking test 019 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 126.178770 - 0: The maximum resident set size (KB) = 435184 + 0: The total amount of wall time = 130.777931 + 0: The maximum resident set size (KB) = 435212 Test 019 control_CubedSphereGrid PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_latlon -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/control_latlon +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_latlon +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/control_latlon Checking test 020 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1041,14 +1041,14 @@ Checking test 020 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 129.331668 - 0: The maximum resident set size (KB) = 435540 + 0: The total amount of wall time = 129.458706 + 0: The maximum resident set size (KB) = 435732 Test 020 control_latlon PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/control_wrtGauss_netcdf_parallel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_wrtGauss_netcdf_parallel +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/control_wrtGauss_netcdf_parallel Checking test 021 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc .........OK @@ -1059,14 +1059,14 @@ Checking test 021 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 139.982558 - 0: The maximum resident set size (KB) = 435224 + 0: The total amount of wall time = 152.372180 + 0: The maximum resident set size (KB) = 435700 Test 021 control_wrtGauss_netcdf_parallel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_c48 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/control_c48 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_c48 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/control_c48 Checking test 022 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1105,14 +1105,14 @@ Checking test 022 control_c48 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0: The total amount of wall time = 351.424639 -0: The maximum resident set size (KB) = 622524 +0: The total amount of wall time = 358.316037 +0: The maximum resident set size (KB) = 622656 Test 022 control_c48 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_c192 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/control_c192 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_c192 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/control_c192 Checking test 023 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1123,14 +1123,14 @@ Checking test 023 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 533.153402 - 0: The maximum resident set size (KB) = 534320 + 0: The total amount of wall time = 538.778557 + 0: The maximum resident set size (KB) = 534536 Test 023 control_c192 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_c384 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/control_c384 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_c384 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/control_c384 Checking test 024 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1141,14 +1141,14 @@ Checking test 024 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 924.246878 - 0: The maximum resident set size (KB) = 792384 + 0: The total amount of wall time = 921.348769 + 0: The maximum resident set size (KB) = 793196 Test 024 control_c384 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_c384gdas -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/control_c384gdas +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_c384gdas +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/control_c384gdas Checking test 025 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1191,14 +1191,14 @@ Checking test 025 control_c384gdas results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 839.868662 - 0: The maximum resident set size (KB) = 939372 + 0: The total amount of wall time = 819.887740 + 0: The maximum resident set size (KB) = 939660 Test 025 control_c384gdas PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_stochy -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/control_stochy +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_stochy +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/control_stochy Checking test 026 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1209,28 +1209,28 @@ Checking test 026 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 85.071821 - 0: The maximum resident set size (KB) = 437656 + 0: The total amount of wall time = 93.096640 + 0: The maximum resident set size (KB) = 436652 Test 026 control_stochy PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_stochy -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/control_stochy_restart +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_stochy +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/control_stochy_restart Checking test 027 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 = 86.820175 - 0: The maximum resident set size (KB) = 187276 + 0: The total amount of wall time = 75.738222 + 0: The maximum resident set size (KB) = 188024 Test 027 control_stochy_restart PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_lndp -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/control_lndp +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_lndp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/control_lndp Checking test 028 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1241,14 +1241,14 @@ Checking test 028 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 82.848536 - 0: The maximum resident set size (KB) = 436552 + 0: The total amount of wall time = 84.672905 + 0: The maximum resident set size (KB) = 436772 Test 028 control_lndp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_iovr4 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/control_iovr4 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_iovr4 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/control_iovr4 Checking test 029 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1263,14 +1263,14 @@ Checking test 029 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 131.397665 - 0: The maximum resident set size (KB) = 435584 + 0: The total amount of wall time = 131.541267 + 0: The maximum resident set size (KB) = 435772 Test 029 control_iovr4 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_iovr5 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/control_iovr5 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_iovr5 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/control_iovr5 Checking test 030 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1285,14 +1285,14 @@ Checking test 030 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 136.464430 - 0: The maximum resident set size (KB) = 435408 + 0: The total amount of wall time = 160.000132 + 0: The maximum resident set size (KB) = 435624 Test 030 control_iovr5 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/control_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/control_p8 Checking test 031 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1339,14 +1339,14 @@ Checking test 031 control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 211.640845 - 0: The maximum resident set size (KB) = 937800 + 0: The total amount of wall time = 209.164947 + 0: The maximum resident set size (KB) = 937944 Test 031 control_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_p8_lndp -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/control_p8_lndp +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_p8_lndp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/control_p8_lndp Checking test 032 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1365,14 +1365,14 @@ Checking test 032 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 403.595177 - 0: The maximum resident set size (KB) = 939688 + 0: The total amount of wall time = 397.544891 + 0: The maximum resident set size (KB) = 939352 Test 032 control_p8_lndp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/control_restart_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/control_restart_p8 Checking test 033 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1411,14 +1411,14 @@ Checking test 033 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 = 131.351989 - 0: The maximum resident set size (KB) = 710484 + 0: The total amount of wall time = 111.386696 + 0: The maximum resident set size (KB) = 710500 Test 033 control_restart_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/control_decomp_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/control_decomp_p8 Checking test 034 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1461,14 +1461,14 @@ Checking test 034 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 = 216.175093 - 0: The maximum resident set size (KB) = 931944 + 0: The total amount of wall time = 244.230928 + 0: The maximum resident set size (KB) = 933600 Test 034 control_decomp_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/control_2threads_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/control_2threads_p8 Checking test 035 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1511,14 +1511,14 @@ Checking test 035 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 = 280.100842 - 0: The maximum resident set size (KB) = 1075964 + 0: The total amount of wall time = 304.935310 + 0: The maximum resident set size (KB) = 1075668 Test 035 control_2threads_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/fv3_regional_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/regional_control +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/fv3_regional_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/regional_control Checking test 036 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1529,42 +1529,42 @@ Checking test 036 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 334.912481 - 0: The maximum resident set size (KB) = 541620 + 0: The total amount of wall time = 372.661729 + 0: The maximum resident set size (KB) = 542700 Test 036 regional_control PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/fv3_regional_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/regional_restart +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/fv3_regional_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/regional_restart Checking test 037 regional_restart results .... Comparing dynf024.nc .........OK Comparing phyf024.nc .........OK Comparing PRSLEV.GrbF24 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 187.739789 - 0: The maximum resident set size (KB) = 539460 + 0: The total amount of wall time = 213.488958 + 0: The maximum resident set size (KB) = 540192 Test 037 regional_restart PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/fv3_regional_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/regional_control_2dwrtdecomp +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/fv3_regional_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/regional_control_2dwrtdecomp Checking test 038 regional_control_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK - 0: The total amount of wall time = 331.039619 - 0: The maximum resident set size (KB) = 541624 + 0: The total amount of wall time = 345.886430 + 0: The maximum resident set size (KB) = 542756 Test 038 regional_control_2dwrtdecomp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/fv3_regional_noquilt -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/regional_noquilt +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/fv3_regional_noquilt +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/regional_noquilt Checking test 039 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1572,14 +1572,14 @@ Checking test 039 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 = 351.625686 - 0: The maximum resident set size (KB) = 549636 + 0: The total amount of wall time = 391.602541 + 0: The maximum resident set size (KB) = 549888 Test 039 regional_noquilt PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/fv3_regional_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/regional_2threads +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/fv3_regional_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/regional_2threads Checking test 040 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1590,28 +1590,28 @@ Checking test 040 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 275.515416 - 0: The maximum resident set size (KB) = 543016 + 0: The total amount of wall time = 270.759832 + 0: The maximum resident set size (KB) = 543568 Test 040 regional_2threads PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/fv3_regional_netcdf_parallel -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/regional_netcdf_parallel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/fv3_regional_netcdf_parallel +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/regional_netcdf_parallel Checking test 041 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK - 0: The total amount of wall time = 367.153602 - 0: The maximum resident set size (KB) = 539804 + 0: The total amount of wall time = 352.594840 + 0: The maximum resident set size (KB) = 539816 Test 041 regional_netcdf_parallel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/fv3_regional_RRTMGP -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/regional_RRTMGP +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/fv3_regional_RRTMGP +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/regional_RRTMGP Checking test 042 regional_RRTMGP results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1622,14 +1622,14 @@ Checking test 042 regional_RRTMGP results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 483.793418 - 0: The maximum resident set size (KB) = 659236 + 0: The total amount of wall time = 467.874327 + 0: The maximum resident set size (KB) = 662568 Test 042 regional_RRTMGP PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/fv3_regional_3km -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/regional_3km +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/fv3_regional_3km +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/regional_3km Checking test 043 regional_3km results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1640,14 +1640,14 @@ Checking test 043 regional_3km results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 254.913648 - 0: The maximum resident set size (KB) = 569960 + 0: The total amount of wall time = 269.417496 + 0: The maximum resident set size (KB) = 569696 Test 043 regional_3km PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/rap_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/rap_control +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/rap_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/rap_control Checking test 044 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1694,14 +1694,14 @@ Checking test 044 rap_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 400.306572 - 0: The maximum resident set size (KB) = 804316 + 0: The total amount of wall time = 430.038149 + 0: The maximum resident set size (KB) = 801260 Test 044 rap_control PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/rap_rrtmgp -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/rap_rrtmgp +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/rap_rrtmgp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/rap_rrtmgp Checking test 045 rap_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1748,14 +1748,14 @@ Checking test 045 rap_rrtmgp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 429.787090 - 0: The maximum resident set size (KB) = 920516 + 0: The total amount of wall time = 474.416401 + 0: The maximum resident set size (KB) = 920628 Test 045 rap_rrtmgp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/regional_spp_sppt_shum_skeb -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/regional_spp_sppt_shum_skeb +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/regional_spp_sppt_shum_skeb +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/regional_spp_sppt_shum_skeb Checking test 046 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -1766,14 +1766,14 @@ Checking test 046 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 333.620894 - 0: The maximum resident set size (KB) = 873336 + 0: The total amount of wall time = 325.279538 + 0: The maximum resident set size (KB) = 873276 Test 046 regional_spp_sppt_shum_skeb PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/rap_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/rap_2threads +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/rap_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/rap_2threads Checking test 047 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1820,14 +1820,14 @@ Checking test 047 rap_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 521.242554 - 0: The maximum resident set size (KB) = 865756 + 0: The total amount of wall time = 537.700659 + 0: The maximum resident set size (KB) = 865724 Test 047 rap_2threads PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/rap_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/rap_restart +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/rap_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/rap_restart Checking test 048 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1866,14 +1866,14 @@ Checking test 048 rap_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 229.090169 - 0: The maximum resident set size (KB) = 544352 + 0: The total amount of wall time = 216.547437 + 0: The maximum resident set size (KB) = 544956 Test 048 rap_restart PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/rap_sfcdiff -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/rap_sfcdiff +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/rap_sfcdiff +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/rap_sfcdiff Checking test 049 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1920,14 +1920,14 @@ Checking test 049 rap_sfcdiff results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 402.152440 - 0: The maximum resident set size (KB) = 804324 + 0: The total amount of wall time = 455.378893 + 0: The maximum resident set size (KB) = 801172 Test 049 rap_sfcdiff PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/rap_sfcdiff -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/rap_sfcdiff_restart +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/rap_sfcdiff +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/rap_sfcdiff_restart Checking test 050 rap_sfcdiff_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1966,14 +1966,14 @@ Checking test 050 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 = 264.745887 - 0: The maximum resident set size (KB) = 543804 + 0: The total amount of wall time = 244.640027 + 0: The maximum resident set size (KB) = 544472 Test 050 rap_sfcdiff_restart PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/hrrr_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/hrrr_control +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/hrrr_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/hrrr_control Checking test 051 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2020,14 +2020,14 @@ Checking test 051 hrrr_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 391.903504 - 0: The maximum resident set size (KB) = 801692 + 0: The total amount of wall time = 414.898782 + 0: The maximum resident set size (KB) = 802088 Test 051 hrrr_control PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/rrfs_v1beta -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/rrfs_v1beta +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/rrfs_v1beta +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/rrfs_v1beta Checking test 052 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2074,14 +2074,14 @@ Checking test 052 rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 414.419067 - 0: The maximum resident set size (KB) = 796860 + 0: The total amount of wall time = 417.484859 + 0: The maximum resident set size (KB) = 798112 Test 052 rrfs_v1beta PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/rrfs_v1nssl -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/rrfs_v1nssl +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/rrfs_v1nssl +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/rrfs_v1nssl Checking test 053 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2096,14 +2096,14 @@ Checking test 053 rrfs_v1nssl results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 504.076262 - 0: The maximum resident set size (KB) = 489024 + 0: The total amount of wall time = 496.353142 + 0: The maximum resident set size (KB) = 489136 Test 053 rrfs_v1nssl PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/rrfs_v1nssl_nohailnoccn +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/rrfs_v1nssl_nohailnoccn Checking test 054 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2118,14 +2118,14 @@ Checking test 054 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 477.966699 - 0: The maximum resident set size (KB) = 480496 + 0: The total amount of wall time = 507.560142 + 0: The maximum resident set size (KB) = 480456 Test 054 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/rrfs_conus13km_hrrr_warm +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/rrfs_conus13km_hrrr_warm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/rrfs_conus13km_hrrr_warm Checking test 055 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2134,14 +2134,14 @@ Checking test 055 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 187.903367 - 0: The maximum resident set size (KB) = 613520 + 0: The total amount of wall time = 199.367851 + 0: The maximum resident set size (KB) = 613752 Test 055 rrfs_conus13km_hrrr_warm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/rrfs_conus13km_radar_tten_warm +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/rrfs_conus13km_radar_tten_warm Checking test 056 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2150,14 +2150,14 @@ Checking test 056 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 192.117370 - 0: The maximum resident set size (KB) = 616304 + 0: The total amount of wall time = 198.244745 + 0: The maximum resident set size (KB) = 617412 Test 056 rrfs_conus13km_radar_tten_warm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_rrtmgp -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/control_rrtmgp +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_rrtmgp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/control_rrtmgp Checking test 057 control_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2168,14 +2168,14 @@ Checking test 057 control_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 236.151004 - 0: The maximum resident set size (KB) = 576300 + 0: The total amount of wall time = 236.873444 + 0: The maximum resident set size (KB) = 576480 Test 057 control_rrtmgp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_rrtmgp_c192 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/control_rrtmgp_c192 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_rrtmgp_c192 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/control_rrtmgp_c192 Checking test 058 control_rrtmgp_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2186,14 +2186,14 @@ Checking test 058 control_rrtmgp_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 595.040780 - 0: The maximum resident set size (KB) = 777300 + 0: The total amount of wall time = 600.028529 + 0: The maximum resident set size (KB) = 777524 Test 058 control_rrtmgp_c192 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_csawmgt -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/control_csawmgt +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_csawmgt +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/control_csawmgt Checking test 059 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2204,14 +2204,14 @@ Checking test 059 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 362.596823 - 0: The maximum resident set size (KB) = 501192 + 0: The total amount of wall time = 345.733552 + 0: The maximum resident set size (KB) = 501332 Test 059 control_csawmgt PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_flake -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/control_flake +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_flake +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/control_flake Checking test 060 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2222,14 +2222,14 @@ Checking test 060 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 251.582286 - 0: The maximum resident set size (KB) = 506664 + 0: The total amount of wall time = 252.335448 + 0: The maximum resident set size (KB) = 506628 -Test 060 control_flake PASS +Test 060 control_flake PASS Tries: 2 -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_ras -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/control_ras +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_ras +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/control_ras Checking test 061 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2240,14 +2240,14 @@ Checking test 061 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 212.092506 - 0: The maximum resident set size (KB) = 467668 + 0: The total amount of wall time = 217.001622 + 0: The maximum resident set size (KB) = 467960 Test 061 control_ras PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_thompson -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/control_thompson +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_thompson +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/control_thompson Checking test 062 control_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2258,14 +2258,14 @@ Checking test 062 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 252.966612 - 0: The maximum resident set size (KB) = 818612 + 0: The total amount of wall time = 267.575251 + 0: The maximum resident set size (KB) = 818808 Test 062 control_thompson PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_thompson_no_aero -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/control_thompson_no_aero +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_thompson_no_aero +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/control_thompson_no_aero Checking test 063 control_thompson_no_aero results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2276,54 +2276,54 @@ Checking test 063 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 242.860118 - 0: The maximum resident set size (KB) = 811628 + 0: The total amount of wall time = 252.699317 + 0: The maximum resident set size (KB) = 811992 Test 063 control_thompson_no_aero PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_wam_repro -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/control_wam_repro +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_wam +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/control_wam Checking test 064 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 145.746302 - 0: The maximum resident set size (KB) = 182636 + 0: The total amount of wall time = 111.304564 + 0: The maximum resident set size (KB) = 182676 Test 064 control_wam PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/control_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/control_debug Checking test 065 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 = 149.550730 - 0: The maximum resident set size (KB) = 599524 + 0: The total amount of wall time = 153.613101 + 0: The maximum resident set size (KB) = 599540 Test 065 control_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/control_2threads_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/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 - 0: The total amount of wall time = 256.606096 - 0: The maximum resident set size (KB) = 648036 + 0: The total amount of wall time = 261.256795 + 0: The maximum resident set size (KB) = 647960 Test 066 control_2threads_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_CubedSphereGrid_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/control_CubedSphereGrid_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_CubedSphereGrid_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/control_CubedSphereGrid_debug Checking test 067 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2350,429 +2350,429 @@ Checking test 067 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 159.882708 - 0: The maximum resident set size (KB) = 600116 + 0: The total amount of wall time = 159.379235 + 0: The maximum resident set size (KB) = 600084 Test 067 control_CubedSphereGrid_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/control_wrtGauss_netcdf_parallel_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/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 - 0: The total amount of wall time = 166.421284 - 0: The maximum resident set size (KB) = 599740 + 0: The total amount of wall time = 160.706615 + 0: The maximum resident set size (KB) = 599500 Test 068 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_stochy_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/control_stochy_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_stochy_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/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 - 0: The total amount of wall time = 172.581791 - 0: The maximum resident set size (KB) = 603752 + 0: The total amount of wall time = 172.500068 + 0: The maximum resident set size (KB) = 604196 Test 069 control_stochy_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_lndp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/control_lndp_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_lndp_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/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 - 0: The total amount of wall time = 154.716326 - 0: The maximum resident set size (KB) = 603944 + 0: The total amount of wall time = 158.523426 + 0: The maximum resident set size (KB) = 603652 Test 070 control_lndp_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_rrtmgp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/control_rrtmgp_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_rrtmgp_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/control_rrtmgp_debug Checking test 071 control_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 = 166.457590 - 0: The maximum resident set size (KB) = 718140 + 0: The total amount of wall time = 165.944796 + 0: The maximum resident set size (KB) = 718032 Test 071 control_rrtmgp_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_csawmg_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/control_csawmg_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_csawmg_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/control_csawmg_debug Checking test 072 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 = 244.089844 - 0: The maximum resident set size (KB) = 642004 + 0: The total amount of wall time = 243.576265 + 0: The maximum resident set size (KB) = 641664 Test 072 control_csawmg_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_csawmgt_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/control_csawmgt_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_csawmgt_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/control_csawmgt_debug Checking test 073 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 = 239.644795 - 0: The maximum resident set size (KB) = 640248 + 0: The total amount of wall time = 239.883775 + 0: The maximum resident set size (KB) = 640228 Test 073 control_csawmgt_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_ras_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/control_ras_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_ras_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/control_ras_debug Checking test 074 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 = 155.641960 - 0: The maximum resident set size (KB) = 611172 + 0: The total amount of wall time = 160.750161 + 0: The maximum resident set size (KB) = 611272 Test 074 control_ras_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_diag_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/control_diag_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_diag_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/control_diag_debug Checking test 075 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 = 158.740920 - 0: The maximum resident set size (KB) = 655800 + 0: The total amount of wall time = 160.719300 + 0: The maximum resident set size (KB) = 656016 Test 075 control_diag_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_debug_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/control_debug_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_debug_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/control_debug_p8 Checking test 076 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 = 185.997075 - 0: The maximum resident set size (KB) = 1103216 + 0: The total amount of wall time = 182.020577 + 0: The maximum resident set size (KB) = 1103164 Test 076 control_debug_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_thompson_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/control_thompson_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_thompson_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/control_thompson_debug Checking test 077 control_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 = 177.921599 - 0: The maximum resident set size (KB) = 960696 + 0: The total amount of wall time = 177.219801 + 0: The maximum resident set size (KB) = 960468 Test 077 control_thompson_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_thompson_no_aero_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/control_thompson_no_aero_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_thompson_no_aero_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/control_thompson_no_aero_debug Checking test 078 control_thompson_no_aero_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 = 170.585087 - 0: The maximum resident set size (KB) = 953876 + 0: The total amount of wall time = 170.195427 + 0: The maximum resident set size (KB) = 954064 Test 078 control_thompson_no_aero_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_thompson_debug_extdiag -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/control_thompson_extdiag_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_thompson_debug_extdiag +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/control_thompson_extdiag_debug Checking test 079 control_thompson_extdiag_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 = 185.909009 - 0: The maximum resident set size (KB) = 989064 + 0: The total amount of wall time = 214.721613 + 0: The maximum resident set size (KB) = 989116 Test 079 control_thompson_extdiag_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_thompson_progcld_thompson_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/control_thompson_progcld_thompson_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_thompson_progcld_thompson_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/control_thompson_progcld_thompson_debug Checking test 080 control_thompson_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 = 176.835259 - 0: The maximum resident set size (KB) = 960676 + 0: The total amount of wall time = 176.917721 + 0: The maximum resident set size (KB) = 960796 Test 080 control_thompson_progcld_thompson_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/fv3_regional_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/regional_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/fv3_regional_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/regional_debug Checking test 081 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 = 258.497859 - 0: The maximum resident set size (KB) = 566080 + 0: The total amount of wall time = 289.742203 + 0: The maximum resident set size (KB) = 565704 Test 081 regional_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/rap_control_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/rap_control_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/rap_control_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/rap_control_debug Checking test 082 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 = 277.228189 - 0: The maximum resident set size (KB) = 964888 + 0: The total amount of wall time = 281.990321 + 0: The maximum resident set size (KB) = 964904 Test 082 rap_control_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/rap_control_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/rap_unified_drag_suite_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/rap_control_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/rap_unified_drag_suite_debug Checking test 083 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 = 279.292801 - 0: The maximum resident set size (KB) = 964908 + 0: The total amount of wall time = 278.750655 + 0: The maximum resident set size (KB) = 964848 Test 083 rap_unified_drag_suite_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/rap_diag_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/rap_diag_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/rap_diag_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/rap_diag_debug Checking test 084 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 = 292.268324 - 0: The maximum resident set size (KB) = 1048564 + 0: The total amount of wall time = 291.720124 + 0: The maximum resident set size (KB) = 1048484 Test 084 rap_diag_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/rap_cires_ugwp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/rap_cires_ugwp_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/rap_cires_ugwp_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/rap_cires_ugwp_debug Checking test 085 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 = 282.697259 - 0: The maximum resident set size (KB) = 963052 + 0: The total amount of wall time = 283.365871 + 0: The maximum resident set size (KB) = 963384 Test 085 rap_cires_ugwp_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/rap_cires_ugwp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/rap_unified_ugwp_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/rap_cires_ugwp_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/rap_unified_ugwp_debug Checking test 086 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 = 282.999795 - 0: The maximum resident set size (KB) = 965208 + 0: The total amount of wall time = 288.617538 + 0: The maximum resident set size (KB) = 965012 Test 086 rap_unified_ugwp_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/rap_lndp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/rap_lndp_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/rap_lndp_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/rap_lndp_debug Checking test 087 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 = 279.463413 - 0: The maximum resident set size (KB) = 965460 + 0: The total amount of wall time = 280.012070 + 0: The maximum resident set size (KB) = 965524 Test 087 rap_lndp_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/rap_flake_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/rap_flake_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/rap_flake_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/rap_flake_debug Checking test 088 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 = 277.212148 - 0: The maximum resident set size (KB) = 964808 + 0: The total amount of wall time = 300.658299 + 0: The maximum resident set size (KB) = 964804 Test 088 rap_flake_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/rap_progcld_thompson_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/rap_progcld_thompson_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/rap_progcld_thompson_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/rap_progcld_thompson_debug Checking test 089 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 = 277.337107 - 0: The maximum resident set size (KB) = 964956 + 0: The total amount of wall time = 278.231889 + 0: The maximum resident set size (KB) = 964804 Test 089 rap_progcld_thompson_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/rap_noah_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/rap_noah_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/rap_noah_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/rap_noah_debug Checking test 090 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 = 276.394194 - 0: The maximum resident set size (KB) = 963412 + 0: The total amount of wall time = 277.689774 + 0: The maximum resident set size (KB) = 963384 Test 090 rap_noah_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/rap_rrtmgp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/rap_rrtmgp_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/rap_rrtmgp_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/rap_rrtmgp_debug Checking test 091 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 = 497.159856 - 0: The maximum resident set size (KB) = 1085564 + 0: The total amount of wall time = 474.393465 + 0: The maximum resident set size (KB) = 1085488 Test 091 rap_rrtmgp_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/rap_sfcdiff_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/rap_sfcdiff_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/rap_sfcdiff_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/rap_sfcdiff_debug Checking test 092 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 = 279.209220 - 0: The maximum resident set size (KB) = 964936 + 0: The total amount of wall time = 277.859879 + 0: The maximum resident set size (KB) = 964940 Test 092 rap_sfcdiff_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/rap_noah_sfcdiff_cires_ugwp_debug Checking test 093 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 = 462.667500 + 0: The total amount of wall time = 463.488676 0: The maximum resident set size (KB) = 963660 Test 093 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/rrfs_v1beta_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/rrfs_v1beta_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/rrfs_v1beta_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/rrfs_v1beta_debug Checking test 094 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 = 275.214805 - 0: The maximum resident set size (KB) = 963748 + 0: The total amount of wall time = 276.354858 + 0: The maximum resident set size (KB) = 963712 Test 094 rrfs_v1beta_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_wam_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/control_wam_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_wam_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/control_wam_debug Checking test 095 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 306.935278 - 0: The maximum resident set size (KB) = 213160 + 0: The total amount of wall time = 292.663771 + 0: The maximum resident set size (KB) = 213472 Test 095 control_wam_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/hafs_regional_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/hafs_regional_atm +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/hafs_regional_atm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/hafs_regional_atm Checking test 096 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 332.210346 - 0: The maximum resident set size (KB) = 666224 + 0: The total amount of wall time = 304.532676 + 0: The maximum resident set size (KB) = 659236 Test 096 hafs_regional_atm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/hafs_regional_atm_thompson_gfdlsf +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/hafs_regional_atm_thompson_gfdlsf Checking test 097 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 396.042898 - 0: The maximum resident set size (KB) = 1020232 + 0: The total amount of wall time = 392.291411 + 0: The maximum resident set size (KB) = 1019672 Test 097 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/hafs_regional_atm_ocn -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/hafs_regional_atm_ocn +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/hafs_regional_atm_ocn +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/hafs_regional_atm_ocn Checking test 098 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -2781,28 +2781,28 @@ Checking test 098 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 = 461.638339 - 0: The maximum resident set size (KB) = 665624 + 0: The total amount of wall time = 423.832497 + 0: The maximum resident set size (KB) = 665904 Test 098 hafs_regional_atm_ocn PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/hafs_regional_atm_wav -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/hafs_regional_atm_wav +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/hafs_regional_atm_wav +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/hafs_regional_atm_wav Checking test 099 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 870.004248 - 0: The maximum resident set size (KB) = 663140 + 0: The total amount of wall time = 875.805376 + 0: The maximum resident set size (KB) = 663256 Test 099 hafs_regional_atm_wav PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/hafs_regional_atm_ocn_wav -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/hafs_regional_atm_ocn_wav +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/hafs_regional_atm_ocn_wav +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/hafs_regional_atm_ocn_wav Checking test 100 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -2811,28 +2811,28 @@ Checking test 100 hafs_regional_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 963.960817 - 0: The maximum resident set size (KB) = 668744 + 0: The total amount of wall time = 977.153086 + 0: The maximum resident set size (KB) = 669084 Test 100 hafs_regional_atm_ocn_wav PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/hafs_regional_1nest_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/hafs_regional_1nest_atm +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/hafs_regional_1nest_atm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/hafs_regional_1nest_atm Checking test 101 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 = 554.688630 - 0: The maximum resident set size (KB) = 263016 + 0: The total amount of wall time = 563.346134 + 0: The maximum resident set size (KB) = 262796 Test 101 hafs_regional_1nest_atm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/hafs_regional_telescopic_2nests_atm +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/hafs_regional_telescopic_2nests_atm Checking test 102 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -2841,28 +2841,28 @@ Checking test 102 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc ............ALT CHECK......OK - 0: The total amount of wall time = 569.380233 - 0: The maximum resident set size (KB) = 260816 + 0: The total amount of wall time = 577.374751 + 0: The maximum resident set size (KB) = 262388 Test 102 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/hafs_global_1nest_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/hafs_global_1nest_atm +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/hafs_global_1nest_atm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/hafs_global_1nest_atm Checking test 103 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 = 248.122099 - 0: The maximum resident set size (KB) = 164080 + 0: The total amount of wall time = 280.581967 + 0: The maximum resident set size (KB) = 164168 Test 103 hafs_global_1nest_atm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/hafs_global_multiple_4nests_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/hafs_global_multiple_4nests_atm +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/hafs_global_multiple_4nests_atm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/hafs_global_multiple_4nests_atm Checking test 104 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -2875,42 +2875,42 @@ Checking test 104 hafs_global_multiple_4nests_atm results .... Comparing atm.nest05.f006.nc .........OK Comparing sfc.nest05.f006.nc .........OK - 0: The total amount of wall time = 679.648739 - 0: The maximum resident set size (KB) = 234336 + 0: The total amount of wall time = 700.125917 + 0: The maximum resident set size (KB) = 234456 Test 104 hafs_global_multiple_4nests_atm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/hafs_regional_specified_moving_1nest_atm +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/hafs_regional_specified_moving_1nest_atm Checking test 105 hafs_regional_specified_moving_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 = 319.772973 - 0: The maximum resident set size (KB) = 267948 + 0: The total amount of wall time = 349.142662 + 0: The maximum resident set size (KB) = 268104 Test 105 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/hafs_regional_storm_following_1nest_atm +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/hafs_regional_storm_following_1nest_atm Checking test 106 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 = 309.056100 - 0: The maximum resident set size (KB) = 267868 + 0: The total amount of wall time = 312.715498 + 0: The maximum resident set size (KB) = 268072 Test 106 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/hafs_regional_storm_following_1nest_atm_ocn +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/hafs_regional_storm_following_1nest_atm_ocn Checking test 107 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -2919,14 +2919,14 @@ Checking test 107 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 = 369.566992 - 0: The maximum resident set size (KB) = 272680 + 0: The total amount of wall time = 345.052316 + 0: The maximum resident set size (KB) = 275524 Test 107 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/hafs_regional_storm_following_1nest_atm_ocn_wav +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 108 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -2937,28 +2937,28 @@ Checking test 108 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 = 937.245605 - 0: The maximum resident set size (KB) = 280448 + 0: The total amount of wall time = 870.717988 + 0: The maximum resident set size (KB) = 279936 Test 108 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/hafs_global_storm_following_1nest_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/hafs_global_storm_following_1nest_atm +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/hafs_global_storm_following_1nest_atm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/hafs_global_storm_following_1nest_atm Checking test 109 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 = 120.269853 - 0: The maximum resident set size (KB) = 181676 + 0: The total amount of wall time = 144.182564 + 0: The maximum resident set size (KB) = 181980 Test 109 hafs_global_storm_following_1nest_atm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/hafs_regional_docn -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/hafs_regional_docn +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/hafs_regional_docn +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/hafs_regional_docn Checking test 110 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -2966,14 +2966,14 @@ Checking test 110 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 = 402.317180 - 0: The maximum resident set size (KB) = 666352 + 0: The total amount of wall time = 391.752650 + 0: The maximum resident set size (KB) = 666572 Test 110 hafs_regional_docn PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/hafs_regional_docn_oisst -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/hafs_regional_docn_oisst +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/hafs_regional_docn_oisst +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/hafs_regional_docn_oisst Checking test 111 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -2981,118 +2981,118 @@ Checking test 111 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 = 397.730659 - 0: The maximum resident set size (KB) = 666020 + 0: The total amount of wall time = 364.186247 + 0: The maximum resident set size (KB) = 666556 Test 111 hafs_regional_docn_oisst PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/hafs_regional_datm_cdeps -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/hafs_regional_datm_cdeps +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/hafs_regional_datm_cdeps +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/hafs_regional_datm_cdeps Checking test 112 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 = 1072.058767 - 0: The maximum resident set size (KB) = 807188 + 0: The total amount of wall time = 1076.086917 + 0: The maximum resident set size (KB) = 807380 Test 112 hafs_regional_datm_cdeps PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/datm_cdeps_control_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/datm_cdeps_control_cfsr +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/datm_cdeps_control_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/datm_cdeps_control_cfsr Checking test 113 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 = 154.956943 - 0: The maximum resident set size (KB) = 684484 + 0: The total amount of wall time = 148.138557 + 0: The maximum resident set size (KB) = 684332 Test 113 datm_cdeps_control_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/datm_cdeps_control_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/datm_cdeps_restart_cfsr +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/datm_cdeps_control_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/datm_cdeps_restart_cfsr Checking test 114 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 = 124.293018 - 0: The maximum resident set size (KB) = 684664 + 0: The total amount of wall time = 84.379251 + 0: The maximum resident set size (KB) = 690144 Test 114 datm_cdeps_restart_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/datm_cdeps_control_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/datm_cdeps_control_gefs +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/datm_cdeps_control_gefs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/datm_cdeps_control_gefs Checking test 115 datm_cdeps_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 147.438650 - 0: The maximum resident set size (KB) = 566888 + 0: The total amount of wall time = 244.589370 + 0: The maximum resident set size (KB) = 569040 Test 115 datm_cdeps_control_gefs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/datm_cdeps_iau_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/datm_cdeps_iau_gefs +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/datm_cdeps_iau_gefs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/datm_cdeps_iau_gefs Checking test 116 datm_cdeps_iau_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 187.239876 - 0: The maximum resident set size (KB) = 565052 + 0: The total amount of wall time = 147.257014 + 0: The maximum resident set size (KB) = 565056 Test 116 datm_cdeps_iau_gefs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/datm_cdeps_stochy_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/datm_cdeps_stochy_gefs +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/datm_cdeps_stochy_gefs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/datm_cdeps_stochy_gefs Checking test 117 datm_cdeps_stochy_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 147.000624 - 0: The maximum resident set size (KB) = 568912 + 0: The total amount of wall time = 145.543533 + 0: The maximum resident set size (KB) = 568968 Test 117 datm_cdeps_stochy_gefs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/datm_cdeps_bulk_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/datm_cdeps_bulk_cfsr +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/datm_cdeps_bulk_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/datm_cdeps_bulk_cfsr Checking test 118 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 = 153.764490 - 0: The maximum resident set size (KB) = 689940 + 0: The total amount of wall time = 214.156311 + 0: The maximum resident set size (KB) = 684172 Test 118 datm_cdeps_bulk_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/datm_cdeps_bulk_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/datm_cdeps_bulk_gefs +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/datm_cdeps_bulk_gefs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/datm_cdeps_bulk_gefs Checking test 119 datm_cdeps_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 175.216562 - 0: The maximum resident set size (KB) = 569104 + 0: The total amount of wall time = 150.081115 + 0: The maximum resident set size (KB) = 569992 Test 119 datm_cdeps_bulk_gefs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/datm_cdeps_mx025_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/datm_cdeps_mx025_cfsr +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/datm_cdeps_mx025_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/datm_cdeps_mx025_cfsr Checking test 120 datm_cdeps_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -3101,14 +3101,14 @@ Checking test 120 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 = 404.872728 - 0: The maximum resident set size (KB) = 481296 + 0: The total amount of wall time = 360.829106 + 0: The maximum resident set size (KB) = 472896 Test 120 datm_cdeps_mx025_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/datm_cdeps_mx025_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/datm_cdeps_mx025_gefs +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/datm_cdeps_mx025_gefs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/datm_cdeps_mx025_gefs Checking test 121 datm_cdeps_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -3117,64 +3117,64 @@ Checking test 121 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 354.382831 - 0: The maximum resident set size (KB) = 449700 + 0: The total amount of wall time = 361.238859 + 0: The maximum resident set size (KB) = 449300 Test 121 datm_cdeps_mx025_gefs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/datm_cdeps_control_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/datm_cdeps_multiple_files_cfsr +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/datm_cdeps_control_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/datm_cdeps_multiple_files_cfsr Checking test 122 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 = 180.053317 - 0: The maximum resident set size (KB) = 676832 + 0: The total amount of wall time = 149.669426 + 0: The maximum resident set size (KB) = 684196 Test 122 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/datm_cdeps_3072x1536_cfsr +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/datm_cdeps_3072x1536_cfsr Checking test 123 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 = 201.473794 - 0: The maximum resident set size (KB) = 1836556 + 0: The total amount of wall time = 199.283100 + 0: The maximum resident set size (KB) = 1836572 Test 123 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/datm_cdeps_gfs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/datm_cdeps_gfs +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/datm_cdeps_gfs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/datm_cdeps_gfs Checking test 124 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 = 230.109699 - 0: The maximum resident set size (KB) = 1836516 + 0: The total amount of wall time = 202.787922 + 0: The maximum resident set size (KB) = 1836632 Test 124 datm_cdeps_gfs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/datm_cdeps_debug_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/datm_cdeps_debug_cfsr +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/datm_cdeps_debug_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/datm_cdeps_debug_cfsr Checking test 125 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 = 368.090780 - 0: The maximum resident set size (KB) = 695180 + 0: The total amount of wall time = 394.715940 + 0: The maximum resident set size (KB) = 689616 Test 125 datm_cdeps_debug_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_atmwav -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/control_atmwav +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_atmwav +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/control_atmwav Checking test 126 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -3218,14 +3218,14 @@ Checking test 126 control_atmwav results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 108.128504 - 0: The maximum resident set size (KB) = 444856 + 0: The total amount of wall time = 118.545907 + 0: The maximum resident set size (KB) = 445092 Test 126 control_atmwav PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_c384gdas_wav -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/control_c384gdas_wav +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_c384gdas_wav +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/control_c384gdas_wav Checking test 127 control_c384gdas_wav results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -3271,14 +3271,14 @@ Checking test 127 control_c384gdas_wav results .... Comparing 20210322.030000.restart.gnh_10m .........OK Comparing 20210322.030000.restart.gsh_15m .........OK - 0: The total amount of wall time = 1396.576703 - 0: The maximum resident set size (KB) = 957644 + 0: The total amount of wall time = 1481.076654 + 0: The maximum resident set size (KB) = 959952 Test 127 control_c384gdas_wav PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_atm_aerosols -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23052/control_atm_aerosols +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_atm_aerosols +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_24145/control_atm_aerosols Checking test 128 control_atm_aerosols results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3325,12 +3325,12 @@ Checking test 128 control_atm_aerosols results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 306.506808 - 0: The maximum resident set size (KB) = 817916 + 0: The total amount of wall time = 308.658174 + 0: The maximum resident set size (KB) = 817984 Test 128 control_atm_aerosols PASS REGRESSION TEST WAS SUCCESSFUL -Fri Apr 29 19:24:24 EDT 2022 -Elapsed time: 04h:49m:57s. Have a nice day! +Mon May 2 15:55:55 EDT 2022 +Elapsed time: 01h:27m:19s. Have a nice day! diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index 126025aec5..ec2fcd2d00 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,16 +1,16 @@ -Fri Apr 29 17:32:43 UTC 2022 +Mon May 2 14:43:47 UTC 2022 Start Regression test -Compile 001 elapsed time 186 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_thompson,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 002 elapsed time 186 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 003 elapsed time 290 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 004 elapsed time 96 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 005 elapsed time 209 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 001 elapsed time 184 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_thompson,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 002 elapsed time 185 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 003 elapsed time 289 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 004 elapsed time 94 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 005 elapsed time 214 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON Compile 006 elapsed time 116 seconds. -DAPP=S2S -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 007 elapsed time 108 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 007 elapsed time 109 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/GNU/control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_18045/control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/GNU/control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30537/control Checking test 001 control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -57,14 +57,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 = 795.856613 - 0: The maximum resident set size (KB) = 483768 + 0: The total amount of wall time = 772.009463 + 0: The maximum resident set size (KB) = 478700 Test 001 control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/GNU/control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_18045/control_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/GNU/control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30537/control_restart Checking test 002 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -103,14 +103,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 = 387.105619 - 0: The maximum resident set size (KB) = 187480 + 0: The total amount of wall time = 397.117050 + 0: The maximum resident set size (KB) = 187248 Test 002 control_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/GNU/control_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_18045/control_c48 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/GNU/control_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30537/control_c48 Checking test 003 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -149,14 +149,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 = 671.566171 -0: The maximum resident set size (KB) = 694908 +0: The total amount of wall time = 670.087377 +0: The maximum resident set size (KB) = 692552 Test 003 control_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/GNU/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_18045/control_stochy +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/GNU/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30537/control_stochy Checking test 004 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -167,14 +167,14 @@ Checking test 004 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 618.993244 - 0: The maximum resident set size (KB) = 481716 + 0: The total amount of wall time = 606.999286 + 0: The maximum resident set size (KB) = 481104 Test 004 control_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/GNU/control_flake -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_18045/control_flake +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/GNU/control_flake +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30537/control_flake Checking test 005 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -185,14 +185,14 @@ Checking test 005 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 1365.531097 - 0: The maximum resident set size (KB) = 529548 + 0: The total amount of wall time = 1400.696739 + 0: The maximum resident set size (KB) = 528772 Test 005 control_flake PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/GNU/control_rrtmgp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_18045/control_rrtmgp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/GNU/control_rrtmgp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30537/control_rrtmgp Checking test 006 control_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -203,14 +203,14 @@ Checking test 006 control_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 820.043934 - 0: The maximum resident set size (KB) = 589908 + 0: The total amount of wall time = 821.699914 + 0: The maximum resident set size (KB) = 594596 Test 006 control_rrtmgp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/GNU/control_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_18045/control_thompson +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/GNU/control_thompson +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30537/control_thompson Checking test 007 control_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -221,14 +221,14 @@ Checking test 007 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 982.072586 - 0: The maximum resident set size (KB) = 843640 + 0: The total amount of wall time = 1011.155264 + 0: The maximum resident set size (KB) = 844260 Test 007 control_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/GNU/control_thompson_no_aero -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_18045/control_thompson_no_aero +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/GNU/control_thompson_no_aero +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30537/control_thompson_no_aero Checking test 008 control_thompson_no_aero results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -239,14 +239,14 @@ Checking test 008 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 960.497248 - 0: The maximum resident set size (KB) = 839976 + 0: The total amount of wall time = 966.294061 + 0: The maximum resident set size (KB) = 838376 Test 008 control_thompson_no_aero PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/GNU/control_ras -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_18045/control_ras +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/GNU/control_ras +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30537/control_ras Checking test 009 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -257,14 +257,14 @@ Checking test 009 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 794.364622 - 0: The maximum resident set size (KB) = 488472 + 0: The total amount of wall time = 824.755342 + 0: The maximum resident set size (KB) = 491332 Test 009 control_ras PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/GNU/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_18045/control_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/GNU/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30537/control_p8 Checking test 010 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -311,14 +311,14 @@ Checking test 010 control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 881.303465 - 0: The maximum resident set size (KB) = 951804 + 0: The total amount of wall time = 875.583555 + 0: The maximum resident set size (KB) = 947288 Test 010 control_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_18045/rap_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/GNU/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30537/rap_control Checking test 011 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -365,14 +365,14 @@ Checking test 011 rap_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1362.502266 - 0: The maximum resident set size (KB) = 829308 + 0: The total amount of wall time = 1364.984739 + 0: The maximum resident set size (KB) = 827540 Test 011 rap_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_18045/rap_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/GNU/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30537/rap_2threads Checking test 012 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -419,14 +419,14 @@ Checking test 012 rap_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1401.688186 - 0: The maximum resident set size (KB) = 890964 + 0: The total amount of wall time = 1462.346671 + 0: The maximum resident set size (KB) = 890468 Test 012 rap_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_18045/rap_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/GNU/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30537/rap_restart Checking test 013 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -465,14 +465,14 @@ Checking test 013 rap_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 670.385112 - 0: The maximum resident set size (KB) = 538312 + 0: The total amount of wall time = 664.044053 + 0: The maximum resident set size (KB) = 538248 Test 013 rap_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_18045/rap_sfcdiff +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/GNU/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30537/rap_sfcdiff Checking test 014 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -519,14 +519,14 @@ Checking test 014 rap_sfcdiff results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1368.082124 - 0: The maximum resident set size (KB) = 829976 + 0: The total amount of wall time = 1375.833855 + 0: The maximum resident set size (KB) = 830948 Test 014 rap_sfcdiff PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_18045/rap_sfcdiff_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/GNU/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30537/rap_sfcdiff_restart Checking test 015 rap_sfcdiff_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -565,14 +565,14 @@ Checking test 015 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 = 672.719093 - 0: The maximum resident set size (KB) = 537892 + 0: The total amount of wall time = 674.509622 + 0: The maximum resident set size (KB) = 536808 Test 015 rap_sfcdiff_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_18045/hrrr_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/GNU/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30537/hrrr_control Checking test 016 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -619,14 +619,14 @@ Checking test 016 hrrr_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1331.994611 - 0: The maximum resident set size (KB) = 824208 + 0: The total amount of wall time = 1339.094962 + 0: The maximum resident set size (KB) = 829764 Test 016 hrrr_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/GNU/rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_18045/rrfs_v1beta +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/GNU/rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30537/rrfs_v1beta Checking test 017 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -673,14 +673,14 @@ Checking test 017 rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1365.982171 - 0: The maximum resident set size (KB) = 823672 + 0: The total amount of wall time = 1373.067708 + 0: The maximum resident set size (KB) = 826380 Test 017 rrfs_v1beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/GNU/rrfs_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_18045/rrfs_conus13km_hrrr_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/GNU/rrfs_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30537/rrfs_conus13km_hrrr_warm Checking test 018 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -689,14 +689,14 @@ Checking test 018 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 1523.334996 - 0: The maximum resident set size (KB) = 636936 + 0: The total amount of wall time = 1540.711898 + 0: The maximum resident set size (KB) = 634300 Test 018 rrfs_conus13km_hrrr_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/GNU/rrfs_conus13km_radar_tten_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_18045/rrfs_conus13km_radar_tten_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/GNU/rrfs_conus13km_radar_tten_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30537/rrfs_conus13km_radar_tten_warm Checking test 019 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -705,250 +705,250 @@ Checking test 019 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 1510.373160 - 0: The maximum resident set size (KB) = 637656 + 0: The total amount of wall time = 1551.469990 + 0: The maximum resident set size (KB) = 637880 Test 019 rrfs_conus13km_radar_tten_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/GNU/control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_18045/control_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/GNU/control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30537/control_debug Checking test 020 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 = 95.693141 - 0: The maximum resident set size (KB) = 477252 + 0: The total amount of wall time = 98.359216 + 0: The maximum resident set size (KB) = 472836 Test 020 control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/GNU/control_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_18045/control_diag_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/GNU/control_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30537/control_diag_debug Checking test 021 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 = 125.375066 - 0: The maximum resident set size (KB) = 533188 + 0: The total amount of wall time = 126.095663 + 0: The maximum resident set size (KB) = 531792 Test 021 control_diag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/GNU/fv3_regional_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_18045/regional_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/GNU/fv3_regional_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30537/regional_debug Checking test 022 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 = 127.470375 - 0: The maximum resident set size (KB) = 548260 + 0: The total amount of wall time = 125.203941 + 0: The maximum resident set size (KB) = 550280 Test 022 regional_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/GNU/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_18045/rap_control_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/GNU/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30537/rap_control_debug Checking test 023 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 = 164.664555 - 0: The maximum resident set size (KB) = 843160 + 0: The total amount of wall time = 166.944651 + 0: The maximum resident set size (KB) = 847944 Test 023 rap_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/GNU/rap_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_18045/rap_diag_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/GNU/rap_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30537/rap_diag_debug Checking test 024 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 = 206.069874 - 0: The maximum resident set size (KB) = 930344 + 0: The total amount of wall time = 203.740429 + 0: The maximum resident set size (KB) = 927544 Test 024 rap_diag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/GNU/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_18045/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/GNU/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30537/rap_noah_sfcdiff_cires_ugwp_debug Checking test 025 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 = 257.927353 - 0: The maximum resident set size (KB) = 844148 + 0: The total amount of wall time = 259.576312 + 0: The maximum resident set size (KB) = 848264 Test 025 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/GNU/rap_progcld_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_18045/rap_progcld_thompson_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/GNU/rap_progcld_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30537/rap_progcld_thompson_debug Checking test 026 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 = 165.792261 - 0: The maximum resident set size (KB) = 846928 + 0: The total amount of wall time = 164.819550 + 0: The maximum resident set size (KB) = 843244 Test 026 rap_progcld_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/GNU/rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_18045/rrfs_v1beta_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/GNU/rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30537/rrfs_v1beta_debug Checking test 027 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 = 169.962149 - 0: The maximum resident set size (KB) = 840960 + 0: The total amount of wall time = 164.392194 + 0: The maximum resident set size (KB) = 841668 Test 027 rrfs_v1beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/GNU/control_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_18045/control_thompson_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/GNU/control_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30537/control_thompson_debug Checking test 028 control_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 = 112.108192 - 0: The maximum resident set size (KB) = 843736 + 0: The total amount of wall time = 111.777834 + 0: The maximum resident set size (KB) = 838692 Test 028 control_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/GNU/control_thompson_no_aero_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_18045/control_thompson_no_aero_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/GNU/control_thompson_no_aero_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30537/control_thompson_no_aero_debug Checking test 029 control_thompson_no_aero_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 = 111.417302 - 0: The maximum resident set size (KB) = 831972 + 0: The total amount of wall time = 108.046118 + 0: The maximum resident set size (KB) = 830508 Test 029 control_thompson_no_aero_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/GNU/control_thompson_debug_extdiag -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_18045/control_thompson_extdiag_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/GNU/control_thompson_debug_extdiag +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30537/control_thompson_extdiag_debug Checking test 030 control_thompson_extdiag_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 = 131.150772 - 0: The maximum resident set size (KB) = 870976 + 0: The total amount of wall time = 132.791280 + 0: The maximum resident set size (KB) = 866952 Test 030 control_thompson_extdiag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/GNU/control_thompson_progcld_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_18045/control_thompson_progcld_thompson_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/GNU/control_thompson_progcld_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30537/control_thompson_progcld_thompson_debug Checking test 031 control_thompson_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 = 114.352442 - 0: The maximum resident set size (KB) = 840088 + 0: The total amount of wall time = 111.532153 + 0: The maximum resident set size (KB) = 837188 Test 031 control_thompson_progcld_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/GNU/control_rrtmgp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_18045/control_rrtmgp_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/GNU/control_rrtmgp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30537/control_rrtmgp_debug Checking test 032 control_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 = 103.511758 - 0: The maximum resident set size (KB) = 588504 + 0: The total amount of wall time = 105.752904 + 0: The maximum resident set size (KB) = 588084 Test 032 control_rrtmgp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/GNU/control_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_18045/control_ras_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/GNU/control_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30537/control_ras_debug Checking test 033 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 = 98.449308 - 0: The maximum resident set size (KB) = 481868 + 0: The total amount of wall time = 99.914611 + 0: The maximum resident set size (KB) = 489576 Test 033 control_ras_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/GNU/control_stochy_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_18045/control_stochy_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/GNU/control_stochy_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30537/control_stochy_debug Checking test 034 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 = 116.461819 - 0: The maximum resident set size (KB) = 479192 + 0: The total amount of wall time = 115.894781 + 0: The maximum resident set size (KB) = 479676 Test 034 control_stochy_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/GNU/control_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_18045/control_debug_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/GNU/control_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30537/control_debug_p8 Checking test 035 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 = 113.879816 - 0: The maximum resident set size (KB) = 943508 + 0: The total amount of wall time = 113.615413 + 0: The maximum resident set size (KB) = 945892 Test 035 control_debug_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/GNU/control_wam_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_18045/control_wam_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/GNU/control_wam_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30537/control_wam_debug Checking test 036 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 175.818973 - 0: The maximum resident set size (KB) = 192560 + 0: The total amount of wall time = 180.659796 + 0: The maximum resident set size (KB) = 191508 Test 036 control_wam_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/GNU/cpld_control_c96_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_18045/cpld_control_c96_noaero_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/GNU/cpld_control_c96_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30537/cpld_control_c96_noaero_p8 Checking test 037 cpld_control_c96_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1010,14 +1010,14 @@ Checking test 037 cpld_control_c96_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 = 1146.968502 - 0: The maximum resident set size (KB) = 978380 + 0: The total amount of wall time = 1171.328279 + 0: The maximum resident set size (KB) = 973720 Test 037 cpld_control_c96_noaero_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/GNU/cpld_debug_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_18045/cpld_debug_noaero_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/GNU/cpld_debug_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30537/cpld_debug_noaero_p8 Checking test 038 cpld_debug_noaero_p8 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1067,25 +1067,25 @@ Checking test 038 cpld_debug_noaero_p8 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK - 0: The total amount of wall time = 595.807710 - 0: The maximum resident set size (KB) = 989228 + 0: The total amount of wall time = 597.392188 + 0: The maximum resident set size (KB) = 986468 Test 038 cpld_debug_noaero_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/GNU/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_18045/datm_cdeps_control_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/GNU/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30537/datm_cdeps_control_cfsr Checking test 039 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 = 165.415319 - 0: The maximum resident set size (KB) = 626800 + 0: The total amount of wall time = 165.471662 + 0: The maximum resident set size (KB) = 624836 Test 039 datm_cdeps_control_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Fri Apr 29 18:18:12 UTC 2022 -Elapsed time: 00h:45m:30s. Have a nice day! +Mon May 2 15:29:09 UTC 2022 +Elapsed time: 00h:45m:23s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index 77d6185656..93daa1d1b5 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,27 +1,25 @@ -Fri Apr 29 17:17:10 UTC 2022 +Mon May 2 15:33:28 UTC 2022 Start Regression test -Test 007 compile FAIL - -Compile 001 elapsed time 436 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1,FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 200 seconds. -DAPP=S2SA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 003 elapsed time 313 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 004 elapsed time 328 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 005 elapsed time 358 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 314 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DREPRO=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -Compile 007 elapsed time 174 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp,FV3_GFS_v16_thompson,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 187 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP,FV3_RAP_cires_ugwp,FV3_RAP_unified_ugwp,FV3_RAP_flake -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 168 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP_noah,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 010 elapsed time 150 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 011 elapsed time 361 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 012 elapsed time 359 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 013 elapsed time 179 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 014 elapsed time 91 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 015 elapsed time 325 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 016 elapsed time 332 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v16 -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/cpld_control_p8 +Compile 001 elapsed time 1609 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1,FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 455 seconds. -DAPP=S2SA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 003 elapsed time 917 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 004 elapsed time 727 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 005 elapsed time 706 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 857 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 1361 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp,FV3_GFS_v16_thompson,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 849 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP,FV3_RAP_cires_ugwp,FV3_RAP_unified_ugwp,FV3_RAP_flake -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 703 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP_noah,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 010 elapsed time 779 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 011 elapsed time 1316 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 012 elapsed time 841 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 013 elapsed time 334 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 014 elapsed time 110 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 015 elapsed time 787 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 016 elapsed time 705 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v16 -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/cpld_control_p8 Checking test 001 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -87,14 +85,14 @@ Checking test 001 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK - 0: The total amount of wall time = 355.554796 - 0: The maximum resident set size (KB) = 1243852 + 0: The total amount of wall time = 378.584005 + 0: The maximum resident set size (KB) = 1245212 Test 001 cpld_control_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/cpld_2threads_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/cpld_2threads_p8 Checking test 002 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -148,14 +146,14 @@ Checking test 002 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK - 0: The total amount of wall time = 448.807402 - 0: The maximum resident set size (KB) = 1893812 + 0: The total amount of wall time = 471.862695 + 0: The maximum resident set size (KB) = 1893432 Test 002 cpld_2threads_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/cpld_decomp_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/cpld_decomp_p8 Checking test 003 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -209,14 +207,14 @@ Checking test 003 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK - 0: The total amount of wall time = 354.731043 - 0: The maximum resident set size (KB) = 1237772 + 0: The total amount of wall time = 374.196271 + 0: The maximum resident set size (KB) = 1235980 Test 003 cpld_decomp_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/cpld_mpi_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/cpld_mpi_p8 Checking test 004 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -270,14 +268,14 @@ Checking test 004 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK - 0: The total amount of wall time = 300.092080 - 0: The maximum resident set size (KB) = 1158892 + 0: The total amount of wall time = 312.384747 + 0: The maximum resident set size (KB) = 1157440 Test 004 cpld_mpi_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/cpld_bmark_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/cpld_bmark_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/cpld_bmark_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/cpld_bmark_p8 Checking test 005 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -323,14 +321,14 @@ Checking test 005 cpld_bmark_p8 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - 0: The total amount of wall time = 1041.439056 - 0: The maximum resident set size (KB) = 3029620 + 0: The total amount of wall time = 1091.858981 + 0: The maximum resident set size (KB) = 3025100 Test 005 cpld_bmark_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/cpld_control_c96_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/cpld_control_c96_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/cpld_control_c96_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/cpld_control_c96_p8 Checking test 006 cpld_control_c96_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -393,14 +391,14 @@ Checking test 006 cpld_control_c96_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 = 348.689100 - 0: The maximum resident set size (KB) = 1256004 + 0: The total amount of wall time = 363.762490 + 0: The maximum resident set size (KB) = 1258800 Test 006 cpld_control_c96_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/cpld_control_c96_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/cpld_restart_c96_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/cpld_control_c96_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/cpld_restart_c96_p8 Checking test 007 cpld_restart_c96_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -451,14 +449,14 @@ Checking test 007 cpld_restart_c96_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 = 196.781697 - 0: The maximum resident set size (KB) = 1244712 + 0: The total amount of wall time = 203.391927 + 0: The maximum resident set size (KB) = 1248148 Test 007 cpld_restart_c96_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/cpld_control_c192_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/cpld_control_c192_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/cpld_control_c192_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/cpld_control_c192_p8 Checking test 008 cpld_control_c192_p8 results .... Comparing sfcf036.tile1.nc .........OK Comparing sfcf036.tile2.nc .........OK @@ -509,14 +507,14 @@ Checking test 008 cpld_control_c192_p8 results .... Comparing RESTART/iced.2021-03-23-64800.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-64800.nc .........OK - 0: The total amount of wall time = 1518.744188 - 0: The maximum resident set size (KB) = 1719356 + 0: The total amount of wall time = 1545.330484 + 0: The maximum resident set size (KB) = 1717716 Test 008 cpld_control_c192_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/cpld_control_c192_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/cpld_restart_c192_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/cpld_control_c192_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/cpld_restart_c192_p8 Checking test 009 cpld_restart_c192_p8 results .... Comparing sfcf036.tile1.nc .........OK Comparing sfcf036.tile2.nc .........OK @@ -567,14 +565,14 @@ Checking test 009 cpld_restart_c192_p8 results .... Comparing RESTART/iced.2021-03-23-64800.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-64800.nc .........OK - 0: The total amount of wall time = 1007.800332 - 0: The maximum resident set size (KB) = 1923564 + 0: The total amount of wall time = 1030.965650 + 0: The maximum resident set size (KB) = 1930616 Test 009 cpld_restart_c192_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/cpld_control_c384_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/cpld_control_c384_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/cpld_control_c384_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/cpld_control_c384_p8 Checking test 010 cpld_control_c384_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -618,14 +616,14 @@ Checking test 010 cpld_control_c384_p8 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK - 0: The total amount of wall time = 1182.570868 - 0: The maximum resident set size (KB) = 3025196 + 0: The total amount of wall time = 1208.407262 + 0: The maximum resident set size (KB) = 3026028 Test 010 cpld_control_c384_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/cpld_control_c384_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/cpld_restart_c384_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/cpld_control_c384_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/cpld_restart_c384_p8 Checking test 011 cpld_restart_c384_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -669,14 +667,14 @@ Checking test 011 cpld_restart_c384_p8 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK - 0: The total amount of wall time = 656.957387 - 0: The maximum resident set size (KB) = 3035872 + 0: The total amount of wall time = 675.646630 + 0: The maximum resident set size (KB) = 3036220 Test 011 cpld_restart_c384_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/cpld_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/cpld_debug_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/cpld_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/cpld_debug_p8 Checking test 012 cpld_debug_p8 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -727,14 +725,14 @@ Checking test 012 cpld_debug_p8 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK - 0: The total amount of wall time = 1102.084388 - 0: The maximum resident set size (KB) = 1385256 + 0: The total amount of wall time = 1122.168026 + 0: The maximum resident set size (KB) = 1382756 Test 012 cpld_debug_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/control Checking test 013 control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -781,14 +779,14 @@ Checking test 013 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 127.313596 - 0: The maximum resident set size (KB) = 469440 + 0: The total amount of wall time = 132.919163 + 0: The maximum resident set size (KB) = 472696 Test 013 control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/control_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/control_decomp Checking test 014 control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -831,28 +829,28 @@ Checking test 014 control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 132.852555 - 0: The maximum resident set size (KB) = 469352 + 0: The total amount of wall time = 136.338780 + 0: The maximum resident set size (KB) = 468612 Test 014 control_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/control_2dwrtdecomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/control_2dwrtdecomp Checking test 015 control_2dwrtdecomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 117.170517 - 0: The maximum resident set size (KB) = 473696 + 0: The total amount of wall time = 120.533710 + 0: The maximum resident set size (KB) = 468132 Test 015 control_2dwrtdecomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/control_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/control_2threads Checking test 016 control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -895,14 +893,14 @@ Checking test 016 control_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 151.087748 - 0: The maximum resident set size (KB) = 522696 + 0: The total amount of wall time = 155.480653 + 0: The maximum resident set size (KB) = 522492 Test 016 control_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/control_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/control_restart Checking test 017 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -941,14 +939,14 @@ Checking test 017 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 65.406023 - 0: The maximum resident set size (KB) = 214884 + 0: The total amount of wall time = 68.232631 + 0: The maximum resident set size (KB) = 205516 Test 017 control_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/control_fhzero +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/control_fhzero Checking test 018 control_fhzero results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -991,14 +989,14 @@ Checking test 018 control_fhzero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 122.235823 - 0: The maximum resident set size (KB) = 472756 + 0: The total amount of wall time = 123.653445 + 0: The maximum resident set size (KB) = 470380 Test 018 control_fhzero PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_CubedSphereGrid -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/control_CubedSphereGrid +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_CubedSphereGrid +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/control_CubedSphereGrid Checking test 019 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1025,14 +1023,14 @@ Checking test 019 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 121.999021 - 0: The maximum resident set size (KB) = 469340 + 0: The total amount of wall time = 128.689603 + 0: The maximum resident set size (KB) = 466664 Test 019 control_CubedSphereGrid PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_latlon -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/control_latlon +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_latlon +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/control_latlon Checking test 020 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1043,14 +1041,14 @@ Checking test 020 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 126.423609 - 0: The maximum resident set size (KB) = 474160 + 0: The total amount of wall time = 128.886197 + 0: The maximum resident set size (KB) = 462300 Test 020 control_latlon PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_wrtGauss_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/control_wrtGauss_netcdf_parallel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_wrtGauss_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/control_wrtGauss_netcdf_parallel Checking test 021 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc .........OK @@ -1061,14 +1059,14 @@ Checking test 021 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 123.965187 - 0: The maximum resident set size (KB) = 467828 + 0: The total amount of wall time = 128.797059 + 0: The maximum resident set size (KB) = 464932 Test 021 control_wrtGauss_netcdf_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/control_c48 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/control_c48 Checking test 022 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1107,14 +1105,14 @@ Checking test 022 control_c48 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0: The total amount of wall time = 310.441682 -0: The maximum resident set size (KB) = 661072 +0: The total amount of wall time = 327.558133 +0: The maximum resident set size (KB) = 652064 Test 022 control_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_c192 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/control_c192 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_c192 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/control_c192 Checking test 023 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1125,14 +1123,14 @@ Checking test 023 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 458.860915 - 0: The maximum resident set size (KB) = 565180 + 0: The total amount of wall time = 483.095508 + 0: The maximum resident set size (KB) = 565028 Test 023 control_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_c384 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/control_c384 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_c384 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/control_c384 Checking test 024 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1143,14 +1141,14 @@ Checking test 024 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 760.887536 - 0: The maximum resident set size (KB) = 820164 + 0: The total amount of wall time = 792.728247 + 0: The maximum resident set size (KB) = 820496 Test 024 control_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_c384gdas -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/control_c384gdas +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_c384gdas +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/control_c384gdas Checking test 025 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1193,14 +1191,14 @@ Checking test 025 control_c384gdas results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 674.585350 - 0: The maximum resident set size (KB) = 977972 + 0: The total amount of wall time = 689.983659 + 0: The maximum resident set size (KB) = 968984 Test 025 control_c384gdas PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/control_stochy +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/control_stochy Checking test 026 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1211,28 +1209,28 @@ Checking test 026 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 82.066807 - 0: The maximum resident set size (KB) = 471564 + 0: The total amount of wall time = 86.703557 + 0: The maximum resident set size (KB) = 469448 Test 026 control_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/control_stochy_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/control_stochy_restart Checking test 027 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 = 44.040761 - 0: The maximum resident set size (KB) = 254028 + 0: The total amount of wall time = 44.466701 + 0: The maximum resident set size (KB) = 249784 Test 027 control_stochy_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_lndp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/control_lndp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_lndp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/control_lndp Checking test 028 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1243,14 +1241,14 @@ Checking test 028 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 72.506322 - 0: The maximum resident set size (KB) = 472968 + 0: The total amount of wall time = 78.069902 + 0: The maximum resident set size (KB) = 466636 Test 028 control_lndp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_iovr4 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/control_iovr4 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_iovr4 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/control_iovr4 Checking test 029 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1265,14 +1263,14 @@ Checking test 029 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 128.256816 - 0: The maximum resident set size (KB) = 470020 + 0: The total amount of wall time = 133.881732 + 0: The maximum resident set size (KB) = 467840 Test 029 control_iovr4 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_iovr5 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/control_iovr5 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_iovr5 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/control_iovr5 Checking test 030 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1287,14 +1285,14 @@ Checking test 030 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 120.853122 - 0: The maximum resident set size (KB) = 470056 + 0: The total amount of wall time = 133.773739 + 0: The maximum resident set size (KB) = 468640 Test 030 control_iovr5 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/control_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/control_p8 Checking test 031 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1341,14 +1339,14 @@ Checking test 031 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.653788 - 0: The maximum resident set size (KB) = 974720 + 0: The total amount of wall time = 189.524136 + 0: The maximum resident set size (KB) = 970524 Test 031 control_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_p8_lndp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/control_p8_lndp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_p8_lndp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/control_p8_lndp Checking test 032 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1367,14 +1365,14 @@ Checking test 032 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 355.261925 - 0: The maximum resident set size (KB) = 976740 + 0: The total amount of wall time = 372.555855 + 0: The maximum resident set size (KB) = 968872 Test 032 control_p8_lndp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/control_restart_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/control_restart_p8 Checking test 033 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1413,14 +1411,14 @@ Checking test 033 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.964786 - 0: The maximum resident set size (KB) = 759616 + 0: The total amount of wall time = 100.020218 + 0: The maximum resident set size (KB) = 758220 Test 033 control_restart_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/control_decomp_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/control_decomp_p8 Checking test 034 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1463,14 +1461,14 @@ Checking test 034 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.516006 - 0: The maximum resident set size (KB) = 969752 + 0: The total amount of wall time = 193.285881 + 0: The maximum resident set size (KB) = 966228 Test 034 control_decomp_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/control_2threads_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/control_2threads_p8 Checking test 035 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1513,14 +1511,14 @@ Checking test 035 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 = 221.560047 - 0: The maximum resident set size (KB) = 1115464 + 0: The total amount of wall time = 238.149069 + 0: The maximum resident set size (KB) = 1107552 Test 035 control_2threads_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/fv3_regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/regional_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/fv3_regional_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/regional_control Checking test 036 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1531,42 +1529,42 @@ Checking test 036 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 299.827951 - 0: The maximum resident set size (KB) = 585880 + 0: The total amount of wall time = 329.074327 + 0: The maximum resident set size (KB) = 580644 Test 036 regional_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/fv3_regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/regional_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/fv3_regional_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/regional_restart Checking test 037 regional_restart results .... Comparing dynf024.nc .........OK Comparing phyf024.nc .........OK Comparing PRSLEV.GrbF24 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 167.196787 - 0: The maximum resident set size (KB) = 587944 + 0: The total amount of wall time = 182.640375 + 0: The maximum resident set size (KB) = 584364 Test 037 regional_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/fv3_regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/regional_control_2dwrtdecomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/fv3_regional_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/regional_control_2dwrtdecomp Checking test 038 regional_control_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK - 0: The total amount of wall time = 297.659438 - 0: The maximum resident set size (KB) = 583656 + 0: The total amount of wall time = 327.554379 + 0: The maximum resident set size (KB) = 578216 Test 038 regional_control_2dwrtdecomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/fv3_regional_noquilt -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/regional_noquilt +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/fv3_regional_noquilt +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/regional_noquilt Checking test 039 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1574,14 +1572,14 @@ Checking test 039 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 = 315.436606 - 0: The maximum resident set size (KB) = 597368 + 0: The total amount of wall time = 341.426437 + 0: The maximum resident set size (KB) = 593436 Test 039 regional_noquilt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/fv3_regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/regional_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/fv3_regional_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/regional_2threads Checking test 040 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1592,28 +1590,28 @@ Checking test 040 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 227.417812 - 0: The maximum resident set size (KB) = 581996 + 0: The total amount of wall time = 236.749116 + 0: The maximum resident set size (KB) = 581588 Test 040 regional_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/fv3_regional_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/regional_netcdf_parallel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/fv3_regional_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/regional_netcdf_parallel Checking test 041 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK - 0: The total amount of wall time = 298.011860 - 0: The maximum resident set size (KB) = 582040 + 0: The total amount of wall time = 325.416049 + 0: The maximum resident set size (KB) = 578904 Test 041 regional_netcdf_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/fv3_regional_RRTMGP -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/regional_RRTMGP +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/fv3_regional_RRTMGP +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/regional_RRTMGP Checking test 042 regional_RRTMGP results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1624,14 +1622,14 @@ Checking test 042 regional_RRTMGP results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 374.320100 - 0: The maximum resident set size (KB) = 701536 + 0: The total amount of wall time = 400.024466 + 0: The maximum resident set size (KB) = 698096 Test 042 regional_RRTMGP PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/fv3_regional_3km -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/regional_3km +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/fv3_regional_3km +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/regional_3km Checking test 043 regional_3km results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1642,14 +1640,14 @@ Checking test 043 regional_3km results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 242.724180 - 0: The maximum resident set size (KB) = 620448 + 0: The total amount of wall time = 260.713946 + 0: The maximum resident set size (KB) = 618144 Test 043 regional_3km PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/rap_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/rap_control Checking test 044 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1696,14 +1694,14 @@ Checking test 044 rap_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 345.358929 - 0: The maximum resident set size (KB) = 838064 + 0: The total amount of wall time = 424.777536 + 0: The maximum resident set size (KB) = 842484 Test 044 rap_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/rap_rrtmgp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/rap_rrtmgp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/rap_rrtmgp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/rap_rrtmgp Checking test 045 rap_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1750,14 +1748,14 @@ Checking test 045 rap_rrtmgp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 391.661894 - 0: The maximum resident set size (KB) = 956376 + 0: The total amount of wall time = 467.438543 + 0: The maximum resident set size (KB) = 960908 Test 045 rap_rrtmgp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/regional_spp_sppt_shum_skeb -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/regional_spp_sppt_shum_skeb +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/regional_spp_sppt_shum_skeb +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/regional_spp_sppt_shum_skeb Checking test 046 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -1768,14 +1766,14 @@ Checking test 046 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 288.627121 - 0: The maximum resident set size (KB) = 928372 + 0: The total amount of wall time = 306.410290 + 0: The maximum resident set size (KB) = 930364 Test 046 regional_spp_sppt_shum_skeb PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/rap_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/rap_2threads Checking test 047 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1822,14 +1820,14 @@ Checking test 047 rap_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 436.081282 - 0: The maximum resident set size (KB) = 901444 + 0: The total amount of wall time = 506.169534 + 0: The maximum resident set size (KB) = 903764 Test 047 rap_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/rap_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/rap_restart Checking test 048 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1868,14 +1866,14 @@ Checking test 048 rap_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 178.814186 - 0: The maximum resident set size (KB) = 590368 + 0: The total amount of wall time = 217.692555 + 0: The maximum resident set size (KB) = 591244 Test 048 rap_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/rap_sfcdiff +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/rap_sfcdiff Checking test 049 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1922,14 +1920,14 @@ Checking test 049 rap_sfcdiff results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 345.828179 - 0: The maximum resident set size (KB) = 838008 + 0: The total amount of wall time = 441.319444 + 0: The maximum resident set size (KB) = 840832 Test 049 rap_sfcdiff PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/rap_sfcdiff_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/rap_sfcdiff_restart Checking test 050 rap_sfcdiff_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1968,14 +1966,14 @@ Checking test 050 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 = 184.424676 - 0: The maximum resident set size (KB) = 592632 + 0: The total amount of wall time = 223.419030 + 0: The maximum resident set size (KB) = 592500 Test 050 rap_sfcdiff_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/hrrr_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/hrrr_control Checking test 051 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2022,14 +2020,14 @@ Checking test 051 hrrr_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 352.213372 - 0: The maximum resident set size (KB) = 838680 + 0: The total amount of wall time = 421.418830 + 0: The maximum resident set size (KB) = 836352 Test 051 hrrr_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/rrfs_v1beta +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/rrfs_v1beta Checking test 052 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2076,14 +2074,14 @@ Checking test 052 rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 347.023396 - 0: The maximum resident set size (KB) = 835604 + 0: The total amount of wall time = 419.339560 + 0: The maximum resident set size (KB) = 832276 Test 052 rrfs_v1beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/rrfs_v1nssl -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/rrfs_v1nssl +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/rrfs_v1nssl +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/rrfs_v1nssl Checking test 053 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2098,14 +2096,14 @@ Checking test 053 rrfs_v1nssl results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 433.261076 - 0: The maximum resident set size (KB) = 522652 + 0: The total amount of wall time = 468.245448 + 0: The maximum resident set size (KB) = 529908 Test 053 rrfs_v1nssl PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/rrfs_v1nssl_nohailnoccn +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/rrfs_v1nssl_nohailnoccn Checking test 054 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2120,14 +2118,14 @@ Checking test 054 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 422.171111 - 0: The maximum resident set size (KB) = 513324 + 0: The total amount of wall time = 474.073014 + 0: The maximum resident set size (KB) = 517244 Test 054 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/rrfs_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/rrfs_conus13km_hrrr_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/rrfs_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/rrfs_conus13km_hrrr_warm Checking test 055 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2136,14 +2134,14 @@ Checking test 055 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 167.428080 - 0: The maximum resident set size (KB) = 666868 + 0: The total amount of wall time = 178.841508 + 0: The maximum resident set size (KB) = 665620 Test 055 rrfs_conus13km_hrrr_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/rrfs_conus13km_radar_tten_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/rrfs_conus13km_radar_tten_warm Checking test 056 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2152,14 +2150,14 @@ Checking test 056 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 161.862149 - 0: The maximum resident set size (KB) = 670156 + 0: The total amount of wall time = 182.243679 + 0: The maximum resident set size (KB) = 671704 Test 056 rrfs_conus13km_radar_tten_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_rrtmgp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/control_rrtmgp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_rrtmgp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/control_rrtmgp Checking test 057 control_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2170,14 +2168,14 @@ Checking test 057 control_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 186.277628 - 0: The maximum resident set size (KB) = 607512 + 0: The total amount of wall time = 191.706463 + 0: The maximum resident set size (KB) = 604848 Test 057 control_rrtmgp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_rrtmgp_c192 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/control_rrtmgp_c192 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_rrtmgp_c192 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/control_rrtmgp_c192 Checking test 058 control_rrtmgp_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2188,14 +2186,14 @@ Checking test 058 control_rrtmgp_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 495.748502 - 0: The maximum resident set size (KB) = 809000 + 0: The total amount of wall time = 506.427755 + 0: The maximum resident set size (KB) = 808272 Test 058 control_rrtmgp_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_csawmg -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/control_csawmg +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_csawmg +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/control_csawmg Checking test 059 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2206,14 +2204,14 @@ Checking test 059 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 311.460845 - 0: The maximum resident set size (KB) = 534592 + 0: The total amount of wall time = 330.501599 + 0: The maximum resident set size (KB) = 533420 Test 059 control_csawmg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_csawmgt -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/control_csawmgt +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_csawmgt +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/control_csawmgt Checking test 060 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2224,14 +2222,14 @@ Checking test 060 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 311.720848 - 0: The maximum resident set size (KB) = 535496 + 0: The total amount of wall time = 328.729657 + 0: The maximum resident set size (KB) = 534708 Test 060 control_csawmgt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_flake -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/control_flake +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_flake +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/control_flake Checking test 061 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2242,14 +2240,14 @@ Checking test 061 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 232.521923 - 0: The maximum resident set size (KB) = 537168 + 0: The total amount of wall time = 235.559907 + 0: The maximum resident set size (KB) = 534236 Test 061 control_flake PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_ras -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/control_ras +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_ras +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/control_ras Checking test 062 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2260,14 +2258,14 @@ Checking test 062 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 167.264574 - 0: The maximum resident set size (KB) = 500964 + 0: The total amount of wall time = 175.072413 + 0: The maximum resident set size (KB) = 495276 Test 062 control_ras PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/control_thompson +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_thompson +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/control_thompson Checking test 063 control_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2278,14 +2276,14 @@ Checking test 063 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 214.040429 - 0: The maximum resident set size (KB) = 850164 + 0: The total amount of wall time = 224.498012 + 0: The maximum resident set size (KB) = 847836 Test 063 control_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_thompson_no_aero -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/control_thompson_no_aero +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_thompson_no_aero +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/control_thompson_no_aero Checking test 064 control_thompson_no_aero results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2296,54 +2294,54 @@ Checking test 064 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 197.760555 - 0: The maximum resident set size (KB) = 846200 + 0: The total amount of wall time = 220.013076 + 0: The maximum resident set size (KB) = 846724 Test 064 control_thompson_no_aero PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_wam_repro -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/control_wam_repro +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_wam +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/control_wam Checking test 065 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 114.079117 - 0: The maximum resident set size (KB) = 233268 + 0: The total amount of wall time = 110.960755 + 0: The maximum resident set size (KB) = 234612 Test 065 control_wam PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/control_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/control_debug Checking test 066 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 = 144.674468 - 0: The maximum resident set size (KB) = 634148 + 0: The total amount of wall time = 144.743633 + 0: The maximum resident set size (KB) = 632664 Test 066 control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/control_2threads_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/control_2threads_debug Checking test 067 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.481523 - 0: The maximum resident set size (KB) = 683852 + 0: The total amount of wall time = 213.024689 + 0: The maximum resident set size (KB) = 683912 Test 067 control_2threads_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_CubedSphereGrid_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/control_CubedSphereGrid_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_CubedSphereGrid_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/control_CubedSphereGrid_debug Checking test 068 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2370,429 +2368,429 @@ Checking test 068 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 157.157771 - 0: The maximum resident set size (KB) = 634084 + 0: The total amount of wall time = 154.747588 + 0: The maximum resident set size (KB) = 633676 -Test 068 control_CubedSphereGrid_debug PASS +Test 068 control_CubedSphereGrid_debug PASS Tries: 2 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/control_wrtGauss_netcdf_parallel_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/control_wrtGauss_netcdf_parallel_debug Checking test 069 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 150.369387 - 0: The maximum resident set size (KB) = 640760 + 0: The total amount of wall time = 145.198776 + 0: The maximum resident set size (KB) = 631532 Test 069 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_stochy_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/control_stochy_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_stochy_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/control_stochy_debug Checking test 070 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 = 166.122793 - 0: The maximum resident set size (KB) = 633992 + 0: The total amount of wall time = 165.019316 + 0: The maximum resident set size (KB) = 635804 Test 070 control_stochy_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_lndp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/control_lndp_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_lndp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/control_lndp_debug Checking test 071 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 = 145.723806 - 0: The maximum resident set size (KB) = 639384 + 0: The total amount of wall time = 146.662548 + 0: The maximum resident set size (KB) = 644736 Test 071 control_lndp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_rrtmgp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/control_rrtmgp_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_rrtmgp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/control_rrtmgp_debug Checking test 072 control_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 = 158.762098 - 0: The maximum resident set size (KB) = 751548 + 0: The total amount of wall time = 156.463892 + 0: The maximum resident set size (KB) = 748956 Test 072 control_rrtmgp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_csawmg_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/control_csawmg_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_csawmg_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/control_csawmg_debug Checking test 073 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 = 223.897521 - 0: The maximum resident set size (KB) = 678048 + 0: The total amount of wall time = 222.387438 + 0: The maximum resident set size (KB) = 677452 Test 073 control_csawmg_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_csawmgt_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/control_csawmgt_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_csawmgt_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/control_csawmgt_debug Checking test 074 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 = 220.377070 - 0: The maximum resident set size (KB) = 677864 + 0: The total amount of wall time = 219.728631 + 0: The maximum resident set size (KB) = 675732 Test 074 control_csawmgt_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/control_ras_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/control_ras_debug Checking test 075 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 = 151.364089 - 0: The maximum resident set size (KB) = 649516 + 0: The total amount of wall time = 150.311395 + 0: The maximum resident set size (KB) = 648328 Test 075 control_ras_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/control_diag_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/control_diag_debug Checking test 076 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 = 155.534003 - 0: The maximum resident set size (KB) = 689256 + 0: The total amount of wall time = 152.179677 + 0: The maximum resident set size (KB) = 696544 Test 076 control_diag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/control_debug_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/control_debug_p8 Checking test 077 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.383299 - 0: The maximum resident set size (KB) = 1141172 + 0: The total amount of wall time = 169.610592 + 0: The maximum resident set size (KB) = 1134820 Test 077 control_debug_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/control_thompson_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/control_thompson_debug Checking test 078 control_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 = 168.398400 - 0: The maximum resident set size (KB) = 996656 + 0: The total amount of wall time = 168.805076 + 0: The maximum resident set size (KB) = 993732 Test 078 control_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_thompson_no_aero_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/control_thompson_no_aero_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_thompson_no_aero_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/control_thompson_no_aero_debug Checking test 079 control_thompson_no_aero_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.672214 - 0: The maximum resident set size (KB) = 986096 + 0: The total amount of wall time = 160.514484 + 0: The maximum resident set size (KB) = 987404 Test 079 control_thompson_no_aero_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_thompson_debug_extdiag -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/control_thompson_extdiag_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_thompson_debug_extdiag +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/control_thompson_extdiag_debug Checking test 080 control_thompson_extdiag_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 = 180.187830 - 0: The maximum resident set size (KB) = 1026132 + 0: The total amount of wall time = 179.259379 + 0: The maximum resident set size (KB) = 1023232 -Test 080 control_thompson_extdiag_debug PASS +Test 080 control_thompson_extdiag_debug PASS Tries: 2 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_thompson_progcld_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/control_thompson_progcld_thompson_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_thompson_progcld_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/control_thompson_progcld_thompson_debug Checking test 081 control_thompson_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 = 167.778016 - 0: The maximum resident set size (KB) = 994712 + 0: The total amount of wall time = 170.780403 + 0: The maximum resident set size (KB) = 995476 Test 081 control_thompson_progcld_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/fv3_regional_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/regional_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/fv3_regional_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/regional_debug Checking test 082 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 = 234.701813 - 0: The maximum resident set size (KB) = 607712 + 0: The total amount of wall time = 235.659394 + 0: The maximum resident set size (KB) = 607932 Test 082 regional_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/rap_control_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/rap_control_debug Checking test 083 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 = 264.098854 - 0: The maximum resident set size (KB) = 1000216 + 0: The total amount of wall time = 257.002440 + 0: The maximum resident set size (KB) = 997460 Test 083 rap_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/rap_unified_drag_suite_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/rap_unified_drag_suite_debug Checking test 084 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 = 265.047089 - 0: The maximum resident set size (KB) = 1001256 + 0: The total amount of wall time = 258.638013 + 0: The maximum resident set size (KB) = 1002368 Test 084 rap_unified_drag_suite_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/rap_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/rap_diag_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/rap_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/rap_diag_debug Checking test 085 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 = 274.928042 - 0: The maximum resident set size (KB) = 1086076 + 0: The total amount of wall time = 275.320053 + 0: The maximum resident set size (KB) = 1083604 Test 085 rap_diag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/rap_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/rap_cires_ugwp_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/rap_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/rap_cires_ugwp_debug Checking test 086 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 = 269.202589 - 0: The maximum resident set size (KB) = 1000460 + 0: The total amount of wall time = 270.005753 + 0: The maximum resident set size (KB) = 1004300 Test 086 rap_cires_ugwp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/rap_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/rap_unified_ugwp_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/rap_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/rap_unified_ugwp_debug Checking test 087 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 = 266.286108 - 0: The maximum resident set size (KB) = 1003536 + 0: The total amount of wall time = 266.645838 + 0: The maximum resident set size (KB) = 1003424 Test 087 rap_unified_ugwp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/rap_lndp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/rap_lndp_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/rap_lndp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/rap_lndp_debug Checking test 088 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 = 261.223742 - 0: The maximum resident set size (KB) = 1005000 + 0: The total amount of wall time = 259.896960 + 0: The maximum resident set size (KB) = 1001272 Test 088 rap_lndp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/rap_flake_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/rap_flake_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/rap_flake_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/rap_flake_debug Checking test 089 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 = 271.465884 - 0: The maximum resident set size (KB) = 998608 + 0: The total amount of wall time = 261.501531 + 0: The maximum resident set size (KB) = 1005456 Test 089 rap_flake_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/rap_progcld_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/rap_progcld_thompson_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/rap_progcld_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/rap_progcld_thompson_debug Checking test 090 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 = 262.949684 - 0: The maximum resident set size (KB) = 998868 + 0: The total amount of wall time = 257.598661 + 0: The maximum resident set size (KB) = 999816 Test 090 rap_progcld_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/rap_noah_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/rap_noah_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/rap_noah_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/rap_noah_debug Checking test 091 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 = 264.065787 - 0: The maximum resident set size (KB) = 1000280 + 0: The total amount of wall time = 253.882049 + 0: The maximum resident set size (KB) = 1000628 Test 091 rap_noah_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/rap_rrtmgp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/rap_rrtmgp_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/rap_rrtmgp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/rap_rrtmgp_debug Checking test 092 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 = 449.371061 - 0: The maximum resident set size (KB) = 1120756 + 0: The total amount of wall time = 440.732012 + 0: The maximum resident set size (KB) = 1128728 Test 092 rap_rrtmgp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/rap_sfcdiff_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/rap_sfcdiff_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/rap_sfcdiff_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/rap_sfcdiff_debug Checking test 093 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 = 264.116825 - 0: The maximum resident set size (KB) = 1002064 + 0: The total amount of wall time = 261.368232 + 0: The maximum resident set size (KB) = 1003596 Test 093 rap_sfcdiff_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/rap_noah_sfcdiff_cires_ugwp_debug Checking test 094 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 = 443.345238 - 0: The maximum resident set size (KB) = 1003352 + 0: The total amount of wall time = 432.114415 + 0: The maximum resident set size (KB) = 1000956 Test 094 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/rrfs_v1beta_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/rrfs_v1beta_debug Checking test 095 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 = 263.138754 - 0: The maximum resident set size (KB) = 998588 + 0: The total amount of wall time = 259.617841 + 0: The maximum resident set size (KB) = 1001240 Test 095 rrfs_v1beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_wam_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/control_wam_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_wam_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/control_wam_debug Checking test 096 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 280.744651 - 0: The maximum resident set size (KB) = 256240 + 0: The total amount of wall time = 276.376834 + 0: The maximum resident set size (KB) = 260156 Test 096 control_wam_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/hafs_regional_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/hafs_regional_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/hafs_regional_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/hafs_regional_atm Checking test 097 hafs_regional_atm results .... - Comparing atmf006.nc .........OK + Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 279.652971 - 0: The maximum resident set size (KB) = 705672 + 0: The total amount of wall time = 296.323190 + 0: The maximum resident set size (KB) = 704588 Test 097 hafs_regional_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/hafs_regional_atm_thompson_gfdlsf +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/hafs_regional_atm_thompson_gfdlsf Checking test 098 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 358.979106 - 0: The maximum resident set size (KB) = 1073140 + 0: The total amount of wall time = 376.210180 + 0: The maximum resident set size (KB) = 1070612 Test 098 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/hafs_regional_atm_ocn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/hafs_regional_atm_ocn +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/hafs_regional_atm_ocn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/hafs_regional_atm_ocn Checking test 099 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -2801,28 +2799,28 @@ Checking test 099 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 = 358.942078 - 0: The maximum resident set size (KB) = 726608 + 0: The total amount of wall time = 369.309874 + 0: The maximum resident set size (KB) = 725276 Test 099 hafs_regional_atm_ocn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/hafs_regional_atm_wav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/hafs_regional_atm_wav +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/hafs_regional_atm_wav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/hafs_regional_atm_wav Checking test 100 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 815.474792 - 0: The maximum resident set size (KB) = 723620 + 0: The total amount of wall time = 820.487401 + 0: The maximum resident set size (KB) = 722976 Test 100 hafs_regional_atm_wav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/hafs_regional_atm_ocn_wav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/hafs_regional_atm_ocn_wav +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/hafs_regional_atm_ocn_wav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/hafs_regional_atm_ocn_wav Checking test 101 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -2831,28 +2829,28 @@ Checking test 101 hafs_regional_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 917.642862 - 0: The maximum resident set size (KB) = 727604 + 0: The total amount of wall time = 917.541775 + 0: The maximum resident set size (KB) = 721788 Test 101 hafs_regional_atm_ocn_wav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/hafs_regional_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/hafs_regional_1nest_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/hafs_regional_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/hafs_regional_1nest_atm Checking test 102 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK + Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 435.244415 - 0: The maximum resident set size (KB) = 315952 + 0: The total amount of wall time = 450.770420 + 0: The maximum resident set size (KB) = 321552 Test 102 hafs_regional_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/hafs_regional_telescopic_2nests_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/hafs_regional_telescopic_2nests_atm Checking test 103 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -2861,30 +2859,30 @@ Checking test 103 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 = 455.638902 - 0: The maximum resident set size (KB) = 326440 + 0: The total amount of wall time = 464.687288 + 0: The maximum resident set size (KB) = 324000 Test 103 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/hafs_global_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/hafs_global_1nest_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/hafs_global_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/hafs_global_1nest_atm Checking test 104 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 = 207.170431 - 0: The maximum resident set size (KB) = 206576 + 0: The total amount of wall time = 206.592005 + 0: The maximum resident set size (KB) = 205188 Test 104 hafs_global_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/hafs_global_multiple_4nests_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/hafs_global_multiple_4nests_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/hafs_global_multiple_4nests_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/hafs_global_multiple_4nests_atm Checking test 105 hafs_global_multiple_4nests_atm results .... - Comparing atmf006.nc .........OK + Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK @@ -2895,28 +2893,28 @@ Checking test 105 hafs_global_multiple_4nests_atm results .... Comparing atm.nest05.f006.nc .........OK Comparing sfc.nest05.f006.nc ............ALT CHECK......OK - 0: The total amount of wall time = 551.542989 - 0: The maximum resident set size (KB) = 278696 + 0: The total amount of wall time = 564.822982 + 0: The maximum resident set size (KB) = 280212 Test 105 hafs_global_multiple_4nests_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/hafs_regional_specified_moving_1nest_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/hafs_regional_specified_moving_1nest_atm Checking test 106 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK + Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 264.067379 - 0: The maximum resident set size (KB) = 322700 + 0: The total amount of wall time = 264.969172 + 0: The maximum resident set size (KB) = 326144 Test 106 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/hafs_regional_storm_following_1nest_atm_ocn +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/hafs_regional_storm_following_1nest_atm_ocn Checking test 107 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -2925,46 +2923,46 @@ Checking test 107 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 = 255.039877 - 0: The maximum resident set size (KB) = 328556 + 0: The total amount of wall time = 263.141944 + 0: The maximum resident set size (KB) = 328180 Test 107 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/hafs_regional_storm_following_1nest_atm_ocn_wav +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 108 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc ............ALT CHECK......OK Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 795.696055 - 0: The maximum resident set size (KB) = 338056 + 0: The total amount of wall time = 775.074231 + 0: The maximum resident set size (KB) = 332236 Test 108 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/hafs_global_storm_following_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/hafs_global_storm_following_1nest_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/hafs_global_storm_following_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/hafs_global_storm_following_1nest_atm Checking test 109 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 = 78.728494 - 0: The maximum resident set size (KB) = 222612 + 0: The total amount of wall time = 81.407021 + 0: The maximum resident set size (KB) = 223920 Test 109 hafs_global_storm_following_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/hafs_regional_docn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/hafs_regional_docn +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/hafs_regional_docn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/hafs_regional_docn Checking test 110 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -2972,14 +2970,14 @@ Checking test 110 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 = 356.950135 - 0: The maximum resident set size (KB) = 719460 + 0: The total amount of wall time = 362.734586 + 0: The maximum resident set size (KB) = 724652 Test 110 hafs_regional_docn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/hafs_regional_docn_oisst -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/hafs_regional_docn_oisst +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/hafs_regional_docn_oisst +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/hafs_regional_docn_oisst Checking test 111 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -2987,118 +2985,118 @@ Checking test 111 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 = 360.952119 - 0: The maximum resident set size (KB) = 719920 + 0: The total amount of wall time = 364.944157 + 0: The maximum resident set size (KB) = 724056 Test 111 hafs_regional_docn_oisst PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/hafs_regional_datm_cdeps -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/hafs_regional_datm_cdeps +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/hafs_regional_datm_cdeps +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/hafs_regional_datm_cdeps Checking test 112 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 = 940.546873 - 0: The maximum resident set size (KB) = 854744 + 0: The total amount of wall time = 945.077974 + 0: The maximum resident set size (KB) = 853520 Test 112 hafs_regional_datm_cdeps PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/datm_cdeps_control_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/datm_cdeps_control_cfsr Checking test 113 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 = 140.872829 - 0: The maximum resident set size (KB) = 719856 + 0: The total amount of wall time = 142.289451 + 0: The maximum resident set size (KB) = 720636 Test 113 datm_cdeps_control_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/datm_cdeps_restart_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/datm_cdeps_restart_cfsr Checking test 114 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 = 84.753682 - 0: The maximum resident set size (KB) = 718792 + 0: The total amount of wall time = 82.526036 + 0: The maximum resident set size (KB) = 719960 Test 114 datm_cdeps_restart_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/datm_cdeps_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/datm_cdeps_control_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/datm_cdeps_control_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/datm_cdeps_control_gefs Checking test 115 datm_cdeps_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 140.760168 - 0: The maximum resident set size (KB) = 621900 + 0: The total amount of wall time = 139.332510 + 0: The maximum resident set size (KB) = 618144 Test 115 datm_cdeps_control_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/datm_cdeps_iau_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/datm_cdeps_iau_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/datm_cdeps_iau_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/datm_cdeps_iau_gefs Checking test 116 datm_cdeps_iau_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 142.017065 - 0: The maximum resident set size (KB) = 619212 + 0: The total amount of wall time = 139.441818 + 0: The maximum resident set size (KB) = 620336 Test 116 datm_cdeps_iau_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/datm_cdeps_stochy_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/datm_cdeps_stochy_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/datm_cdeps_stochy_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/datm_cdeps_stochy_gefs Checking test 117 datm_cdeps_stochy_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 138.983653 - 0: The maximum resident set size (KB) = 619984 + 0: The total amount of wall time = 141.964519 + 0: The maximum resident set size (KB) = 620104 Test 117 datm_cdeps_stochy_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/datm_cdeps_bulk_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/datm_cdeps_bulk_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/datm_cdeps_bulk_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/datm_cdeps_bulk_cfsr Checking test 118 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 = 143.647456 - 0: The maximum resident set size (KB) = 719956 + 0: The total amount of wall time = 141.728266 + 0: The maximum resident set size (KB) = 719436 Test 118 datm_cdeps_bulk_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/datm_cdeps_bulk_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/datm_cdeps_bulk_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/datm_cdeps_bulk_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/datm_cdeps_bulk_gefs Checking test 119 datm_cdeps_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 140.725250 - 0: The maximum resident set size (KB) = 618904 + 0: The total amount of wall time = 137.413832 + 0: The maximum resident set size (KB) = 620188 Test 119 datm_cdeps_bulk_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/datm_cdeps_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/datm_cdeps_mx025_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/datm_cdeps_mx025_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/datm_cdeps_mx025_cfsr Checking test 120 datm_cdeps_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -3107,14 +3105,14 @@ Checking test 120 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 = 307.914765 - 0: The maximum resident set size (KB) = 563984 + 0: The total amount of wall time = 303.411103 + 0: The maximum resident set size (KB) = 569180 Test 120 datm_cdeps_mx025_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/datm_cdeps_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/datm_cdeps_mx025_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/datm_cdeps_mx025_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/datm_cdeps_mx025_gefs Checking test 121 datm_cdeps_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -3123,64 +3121,64 @@ Checking test 121 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 296.783169 - 0: The maximum resident set size (KB) = 531936 + 0: The total amount of wall time = 299.877214 + 0: The maximum resident set size (KB) = 529368 Test 121 datm_cdeps_mx025_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/datm_cdeps_multiple_files_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/datm_cdeps_multiple_files_cfsr Checking test 122 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 = 143.432476 - 0: The maximum resident set size (KB) = 720396 + 0: The total amount of wall time = 142.339752 + 0: The maximum resident set size (KB) = 739208 Test 122 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/datm_cdeps_3072x1536_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/datm_cdeps_3072x1536_cfsr Checking test 123 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 = 194.925019 - 0: The maximum resident set size (KB) = 1894372 + 0: The total amount of wall time = 194.358140 + 0: The maximum resident set size (KB) = 1895040 Test 123 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/datm_cdeps_gfs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/datm_cdeps_gfs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/datm_cdeps_gfs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/datm_cdeps_gfs Checking test 124 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 = 198.628257 - 0: The maximum resident set size (KB) = 1832568 + 0: The total amount of wall time = 191.862028 + 0: The maximum resident set size (KB) = 1830608 Test 124 datm_cdeps_gfs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/datm_cdeps_debug_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/datm_cdeps_debug_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/datm_cdeps_debug_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/datm_cdeps_debug_cfsr Checking test 125 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 = 444.983774 - 0: The maximum resident set size (KB) = 724372 + 0: The total amount of wall time = 435.923882 + 0: The maximum resident set size (KB) = 727072 Test 125 datm_cdeps_debug_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_atmwav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/control_atmwav +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_atmwav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/control_atmwav Checking test 126 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -3224,14 +3222,14 @@ Checking test 126 control_atmwav results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 77.320319 - 0: The maximum resident set size (KB) = 494236 + 0: The total amount of wall time = 81.086735 + 0: The maximum resident set size (KB) = 497092 Test 126 control_atmwav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_c384gdas_wav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/control_c384gdas_wav +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_c384gdas_wav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/control_c384gdas_wav Checking test 127 control_c384gdas_wav results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -3277,14 +3275,14 @@ Checking test 127 control_c384gdas_wav results .... Comparing 20210322.030000.restart.gnh_10m .........OK Comparing 20210322.030000.restart.gsh_15m .........OK - 0: The total amount of wall time = 672.036252 - 0: The maximum resident set size (KB) = 1044724 + 0: The total amount of wall time = 689.896365 + 0: The maximum resident set size (KB) = 1047116 Test 127 control_c384gdas_wav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_atm_aerosols -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32761/control_atm_aerosols +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_atm_aerosols +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7221/control_atm_aerosols Checking test 128 control_atm_aerosols results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3331,12 +3329,12 @@ Checking test 128 control_atm_aerosols results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 276.415623 - 0: The maximum resident set size (KB) = 909728 + 0: The total amount of wall time = 283.378224 + 0: The maximum resident set size (KB) = 907380 Test 128 control_atm_aerosols PASS REGRESSION TEST WAS SUCCESSFUL -Fri Apr 29 18:19:15 UTC 2022 -Elapsed time: 01h:02m:05s. Have a nice day! +Mon May 2 17:00:23 UTC 2022 +Elapsed time: 01h:26m:55s. Have a nice day! diff --git a/tests/RegressionTests_jet.intel.log b/tests/RegressionTests_jet.intel.log index aea2229d60..06245a3b94 100644 --- a/tests/RegressionTests_jet.intel.log +++ b/tests/RegressionTests_jet.intel.log @@ -1,25 +1,25 @@ -Fri Apr 29 18:31:41 GMT 2022 +Mon May 2 19:16:25 GMT 2022 Start Regression test -Compile 001 elapsed time 1445 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1,FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 002 elapsed time 262 seconds. -DAPP=S2SA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 003 elapsed time 1244 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 004 elapsed time 1307 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 005 elapsed time 1288 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 006 elapsed time 761 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DREPRO=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -Compile 007 elapsed time 236 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp,FV3_GFS_v16_thompson,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 213 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP,FV3_RAP_cires_ugwp,FV3_RAP_unified_ugwp,FV3_RAP_flake -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 214 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP_noah,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 010 elapsed time 210 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 011 elapsed time 1286 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 012 elapsed time 1302 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 013 elapsed time 282 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 014 elapsed time 127 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 015 elapsed time 1218 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 016 elapsed time 1242 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v16 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON - -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_140438/cpld_control_p8 +Compile 001 elapsed time 1754 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1,FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 002 elapsed time 272 seconds. -DAPP=S2SA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 003 elapsed time 1255 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 004 elapsed time 1308 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 005 elapsed time 1297 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 006 elapsed time 1211 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 007 elapsed time 261 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp,FV3_GFS_v16_thompson,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 229 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP,FV3_RAP_cires_ugwp,FV3_RAP_unified_ugwp,FV3_RAP_flake -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 225 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP_noah,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 010 elapsed time 223 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 011 elapsed time 1730 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 012 elapsed time 1731 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 013 elapsed time 285 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 014 elapsed time 125 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 015 elapsed time 1494 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 016 elapsed time 1265 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v16 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON + +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_187853/cpld_control_p8 Checking test 001 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -85,14 +85,14 @@ Checking test 001 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK - 0: The total amount of wall time = 485.902328 - 0: The maximum resident set size (KB) = 1270348 + 0: The total amount of wall time = 589.869418 + 0: The maximum resident set size (KB) = 1278520 Test 001 cpld_control_p8 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_140438/cpld_2threads_p8 +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_187853/cpld_2threads_p8 Checking test 002 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -146,14 +146,14 @@ Checking test 002 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK - 0: The total amount of wall time = 1347.578670 - 0: The maximum resident set size (KB) = 1932892 + 0: The total amount of wall time = 1484.534698 + 0: The maximum resident set size (KB) = 1935192 Test 002 cpld_2threads_p8 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_140438/cpld_mpi_p8 +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_187853/cpld_mpi_p8 Checking test 003 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -207,14 +207,14 @@ Checking test 003 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK - 0: The total amount of wall time = 412.188270 - 0: The maximum resident set size (KB) = 1413236 + 0: The total amount of wall time = 440.464695 + 0: The maximum resident set size (KB) = 1399428 Test 003 cpld_mpi_p8 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/cpld_control_c96_p8 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_140438/cpld_control_c96_p8 +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/cpld_control_c96_p8 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_187853/cpld_control_c96_p8 Checking test 004 cpld_control_c96_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -277,14 +277,14 @@ Checking test 004 cpld_control_c96_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 = 403.947076 - 0: The maximum resident set size (KB) = 1395680 + 0: The total amount of wall time = 431.159808 + 0: The maximum resident set size (KB) = 1387868 Test 004 cpld_control_c96_p8 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/cpld_control_c96_p8 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_140438/cpld_restart_c96_p8 +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/cpld_control_c96_p8 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_187853/cpld_restart_c96_p8 Checking test 005 cpld_restart_c96_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -335,14 +335,14 @@ Checking test 005 cpld_restart_c96_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 = 228.222962 - 0: The maximum resident set size (KB) = 1369992 + 0: The total amount of wall time = 248.713388 + 0: The maximum resident set size (KB) = 1366044 Test 005 cpld_restart_c96_p8 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/cpld_debug_p8 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_140438/cpld_debug_p8 +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/cpld_debug_p8 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_187853/cpld_debug_p8 Checking test 006 cpld_debug_p8 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -393,14 +393,14 @@ Checking test 006 cpld_debug_p8 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK - 0: The total amount of wall time = 1151.387171 - 0: The maximum resident set size (KB) = 1467820 + 0: The total amount of wall time = 1151.440730 + 0: The maximum resident set size (KB) = 1462744 Test 006 cpld_debug_p8 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_140438/control +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_187853/control Checking test 007 control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -447,14 +447,14 @@ Checking test 007 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 177.892915 - 0: The maximum resident set size (KB) = 468524 + 0: The total amount of wall time = 189.478521 + 0: The maximum resident set size (KB) = 464768 Test 007 control PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_140438/control_decomp +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_187853/control_decomp Checking test 008 control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -497,28 +497,28 @@ Checking test 008 control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 178.585794 - 0: The maximum resident set size (KB) = 468508 + 0: The total amount of wall time = 186.655261 + 0: The maximum resident set size (KB) = 465608 Test 008 control_decomp PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_140438/control_2dwrtdecomp +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_187853/control_2dwrtdecomp Checking test 009 control_2dwrtdecomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 169.661382 - 0: The maximum resident set size (KB) = 469424 + 0: The total amount of wall time = 177.697194 + 0: The maximum resident set size (KB) = 465768 Test 009 control_2dwrtdecomp PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_140438/control_2threads +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_187853/control_2threads Checking test 010 control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -561,14 +561,14 @@ Checking test 010 control_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 807.853253 - 0: The maximum resident set size (KB) = 520664 + 0: The total amount of wall time = 809.114363 + 0: The maximum resident set size (KB) = 520388 Test 010 control_2threads PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_140438/control_restart +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_187853/control_restart Checking test 011 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -607,14 +607,14 @@ Checking test 011 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 94.704396 - 0: The maximum resident set size (KB) = 208808 + 0: The total amount of wall time = 98.499702 + 0: The maximum resident set size (KB) = 208760 Test 011 control_restart PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_140438/control_fhzero +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_187853/control_fhzero Checking test 012 control_fhzero results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -657,14 +657,14 @@ Checking test 012 control_fhzero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 168.175192 - 0: The maximum resident set size (KB) = 471776 + 0: The total amount of wall time = 178.156687 + 0: The maximum resident set size (KB) = 468604 Test 012 control_fhzero PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_CubedSphereGrid -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_140438/control_CubedSphereGrid +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_CubedSphereGrid +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_187853/control_CubedSphereGrid Checking test 013 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -691,14 +691,14 @@ Checking test 013 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 170.456279 - 0: The maximum resident set size (KB) = 470280 + 0: The total amount of wall time = 177.431890 + 0: The maximum resident set size (KB) = 464416 Test 013 control_CubedSphereGrid PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_latlon -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_140438/control_latlon +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_latlon +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_187853/control_latlon Checking test 014 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -709,16 +709,16 @@ Checking test 014 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 171.680402 - 0: The maximum resident set size (KB) = 474764 + 0: The total amount of wall time = 186.709386 + 0: The maximum resident set size (KB) = 461000 Test 014 control_latlon PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_140438/control_wrtGauss_netcdf_parallel +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_wrtGauss_netcdf_parallel +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_187853/control_wrtGauss_netcdf_parallel Checking test 015 control_wrtGauss_netcdf_parallel results .... - Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK @@ -727,14 +727,14 @@ Checking test 015 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 176.657944 - 0: The maximum resident set size (KB) = 471044 + 0: The total amount of wall time = 186.378372 + 0: The maximum resident set size (KB) = 465880 Test 015 control_wrtGauss_netcdf_parallel PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_c48 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_140438/control_c48 +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_c48 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_187853/control_c48 Checking test 016 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -773,14 +773,14 @@ Checking test 016 control_c48 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0: The total amount of wall time = 535.068482 -0: The maximum resident set size (KB) = 660728 +0: The total amount of wall time = 565.484430 +0: The maximum resident set size (KB) = 660880 Test 016 control_c48 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_c192 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_140438/control_c192 +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_c192 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_187853/control_c192 Checking test 017 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -791,14 +791,14 @@ Checking test 017 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 654.541837 - 0: The maximum resident set size (KB) = 567672 + 0: The total amount of wall time = 682.706182 + 0: The maximum resident set size (KB) = 561176 Test 017 control_c192 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_c384 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_140438/control_c384 +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_c384 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_187853/control_c384 Checking test 018 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -809,14 +809,14 @@ Checking test 018 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 802.105236 - 0: The maximum resident set size (KB) = 692580 + 0: The total amount of wall time = 847.609979 + 0: The maximum resident set size (KB) = 686304 Test 018 control_c384 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_c384gdas -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_140438/control_c384gdas +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_c384gdas +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_187853/control_c384gdas Checking test 019 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -859,14 +859,14 @@ Checking test 019 control_c384gdas results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 752.956135 - 0: The maximum resident set size (KB) = 783912 + 0: The total amount of wall time = 809.650071 + 0: The maximum resident set size (KB) = 769308 Test 019 control_c384gdas PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_stochy -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_140438/control_stochy +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_stochy +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_187853/control_stochy Checking test 020 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -877,28 +877,28 @@ Checking test 020 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 118.708269 - 0: The maximum resident set size (KB) = 472444 + 0: The total amount of wall time = 124.449267 + 0: The maximum resident set size (KB) = 466936 Test 020 control_stochy PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_stochy -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_140438/control_stochy_restart +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_stochy +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_187853/control_stochy_restart Checking test 021 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 = 67.260543 - 0: The maximum resident set size (KB) = 234344 + 0: The total amount of wall time = 67.100951 + 0: The maximum resident set size (KB) = 233152 Test 021 control_stochy_restart PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_lndp -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_140438/control_lndp +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_lndp +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_187853/control_lndp Checking test 022 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -909,14 +909,14 @@ Checking test 022 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 106.750796 - 0: The maximum resident set size (KB) = 477276 + 0: The total amount of wall time = 107.686276 + 0: The maximum resident set size (KB) = 469680 Test 022 control_lndp PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_iovr4 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_140438/control_iovr4 +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_iovr4 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_187853/control_iovr4 Checking test 023 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -931,14 +931,14 @@ Checking test 023 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 179.680949 - 0: The maximum resident set size (KB) = 464460 + 0: The total amount of wall time = 185.528428 + 0: The maximum resident set size (KB) = 466628 Test 023 control_iovr4 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_iovr5 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_140438/control_iovr5 +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_iovr5 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_187853/control_iovr5 Checking test 024 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -953,14 +953,14 @@ Checking test 024 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 176.477349 - 0: The maximum resident set size (KB) = 465200 + 0: The total amount of wall time = 186.046770 + 0: The maximum resident set size (KB) = 468324 Test 024 control_iovr5 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_140438/control_p8 +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_p8 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_187853/control_p8 Checking test 025 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1007,14 +1007,14 @@ Checking test 025 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.980229 - 0: The maximum resident set size (KB) = 973816 + 0: The total amount of wall time = 268.312328 + 0: The maximum resident set size (KB) = 966364 Test 025 control_p8 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_p8_lndp -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_140438/control_p8_lndp +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_p8_lndp +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_187853/control_p8_lndp Checking test 026 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1033,14 +1033,14 @@ Checking test 026 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 478.256703 - 0: The maximum resident set size (KB) = 974368 + 0: The total amount of wall time = 511.967883 + 0: The maximum resident set size (KB) = 963908 Test 026 control_p8_lndp PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_140438/control_restart_p8 +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_p8 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_187853/control_restart_p8 Checking test 027 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1079,14 +1079,14 @@ Checking test 027 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 = 131.745939 - 0: The maximum resident set size (KB) = 759840 + 0: The total amount of wall time = 140.160934 + 0: The maximum resident set size (KB) = 751036 Test 027 control_restart_p8 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_140438/control_decomp_p8 +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_p8 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_187853/control_decomp_p8 Checking test 028 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1129,14 +1129,14 @@ Checking test 028 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 = 251.116647 - 0: The maximum resident set size (KB) = 966068 + 0: The total amount of wall time = 272.237383 + 0: The maximum resident set size (KB) = 964244 Test 028 control_decomp_p8 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_140438/control_2threads_p8 +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_p8 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_187853/control_2threads_p8 Checking test 029 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1179,14 +1179,14 @@ Checking test 029 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 = 916.509008 - 0: The maximum resident set size (KB) = 1114444 + 0: The total amount of wall time = 825.442039 + 0: The maximum resident set size (KB) = 1098900 Test 029 control_2threads_p8 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/fv3_regional_control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_140438/regional_control +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/fv3_regional_control +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_187853/regional_control Checking test 030 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1197,42 +1197,42 @@ Checking test 030 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 457.123975 - 0: The maximum resident set size (KB) = 582832 + 0: The total amount of wall time = 484.527583 + 0: The maximum resident set size (KB) = 579944 Test 030 regional_control PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/fv3_regional_control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_140438/regional_restart +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/fv3_regional_control +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_187853/regional_restart Checking test 031 regional_restart results .... Comparing dynf024.nc .........OK Comparing phyf024.nc .........OK Comparing PRSLEV.GrbF24 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 243.758535 - 0: The maximum resident set size (KB) = 580444 + 0: The total amount of wall time = 351.762579 + 0: The maximum resident set size (KB) = 578520 Test 031 regional_restart PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/fv3_regional_control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_140438/regional_control_2dwrtdecomp +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/fv3_regional_control +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_187853/regional_control_2dwrtdecomp Checking test 032 regional_control_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK - 0: The total amount of wall time = 436.771276 - 0: The maximum resident set size (KB) = 583424 + 0: The total amount of wall time = 476.536838 + 0: The maximum resident set size (KB) = 579688 Test 032 regional_control_2dwrtdecomp PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/fv3_regional_noquilt -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_140438/regional_noquilt +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/fv3_regional_noquilt +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_187853/regional_noquilt Checking test 033 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1240,28 +1240,28 @@ Checking test 033 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 = 461.739307 - 0: The maximum resident set size (KB) = 589520 + 0: The total amount of wall time = 495.625383 + 0: The maximum resident set size (KB) = 587820 Test 033 regional_noquilt PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/fv3_regional_netcdf_parallel -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_140438/regional_netcdf_parallel +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/fv3_regional_netcdf_parallel +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_187853/regional_netcdf_parallel Checking test 034 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK + Comparing dynf024.nc ............ALT CHECK......OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK - 0: The total amount of wall time = 465.223101 - 0: The maximum resident set size (KB) = 583092 + 0: The total amount of wall time = 473.717214 + 0: The maximum resident set size (KB) = 577204 Test 034 regional_netcdf_parallel PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/fv3_regional_RRTMGP -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_140438/regional_RRTMGP +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/fv3_regional_RRTMGP +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_187853/regional_RRTMGP Checking test 035 regional_RRTMGP results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1272,14 +1272,14 @@ Checking test 035 regional_RRTMGP results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 548.133070 - 0: The maximum resident set size (KB) = 701752 + 0: The total amount of wall time = 583.165944 + 0: The maximum resident set size (KB) = 696468 Test 035 regional_RRTMGP PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/fv3_regional_3km -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_140438/regional_3km +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/fv3_regional_3km +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_187853/regional_3km Checking test 036 regional_3km results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1290,14 +1290,14 @@ Checking test 036 regional_3km results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 366.184039 - 0: The maximum resident set size (KB) = 625716 + 0: The total amount of wall time = 393.489270 + 0: The maximum resident set size (KB) = 619144 Test 036 regional_3km PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/rap_control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_140438/rap_control +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/rap_control +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_187853/rap_control Checking test 037 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1344,14 +1344,14 @@ Checking test 037 rap_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 493.772611 - 0: The maximum resident set size (KB) = 841316 + 0: The total amount of wall time = 587.232558 + 0: The maximum resident set size (KB) = 842672 Test 037 rap_control PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/rap_rrtmgp -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_140438/rap_rrtmgp +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/rap_rrtmgp +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_187853/rap_rrtmgp Checking test 038 rap_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1398,14 +1398,14 @@ Checking test 038 rap_rrtmgp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 530.340942 - 0: The maximum resident set size (KB) = 958816 + 0: The total amount of wall time = 620.416653 + 0: The maximum resident set size (KB) = 955916 Test 038 rap_rrtmgp PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/regional_spp_sppt_shum_skeb -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_140438/regional_spp_sppt_shum_skeb +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/regional_spp_sppt_shum_skeb +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_187853/regional_spp_sppt_shum_skeb Checking test 039 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -1416,14 +1416,14 @@ Checking test 039 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 1331.813655 - 0: The maximum resident set size (KB) = 917408 + 0: The total amount of wall time = 1384.742854 + 0: The maximum resident set size (KB) = 918968 Test 039 regional_spp_sppt_shum_skeb PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/rap_control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_140438/rap_restart +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/rap_control +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_187853/rap_restart Checking test 040 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1462,14 +1462,14 @@ Checking test 040 rap_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 254.480172 - 0: The maximum resident set size (KB) = 593924 + 0: The total amount of wall time = 305.709634 + 0: The maximum resident set size (KB) = 596696 Test 040 rap_restart PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_140438/rap_sfcdiff +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/rap_sfcdiff +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_187853/rap_sfcdiff Checking test 041 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1516,14 +1516,14 @@ Checking test 041 rap_sfcdiff results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 490.081609 - 0: The maximum resident set size (KB) = 833608 + 0: The total amount of wall time = 657.300236 + 0: The maximum resident set size (KB) = 845788 Test 041 rap_sfcdiff PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_140438/rap_sfcdiff_restart +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/rap_sfcdiff +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_187853/rap_sfcdiff_restart Checking test 042 rap_sfcdiff_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1562,14 +1562,14 @@ Checking test 042 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 = 248.940357 - 0: The maximum resident set size (KB) = 583444 + 0: The total amount of wall time = 296.020826 + 0: The maximum resident set size (KB) = 596544 Test 042 rap_sfcdiff_restart PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/hrrr_control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_140438/hrrr_control +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/hrrr_control +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_187853/hrrr_control Checking test 043 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1616,14 +1616,14 @@ Checking test 043 hrrr_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 472.902257 - 0: The maximum resident set size (KB) = 836936 + 0: The total amount of wall time = 639.890988 + 0: The maximum resident set size (KB) = 836328 Test 043 hrrr_control PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/rrfs_v1beta -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_140438/rrfs_v1beta +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/rrfs_v1beta +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_187853/rrfs_v1beta Checking test 044 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1670,14 +1670,14 @@ Checking test 044 rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 482.701235 - 0: The maximum resident set size (KB) = 833600 + 0: The total amount of wall time = 651.909579 + 0: The maximum resident set size (KB) = 832336 Test 044 rrfs_v1beta PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/rrfs_v1nssl -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_140438/rrfs_v1nssl +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/rrfs_v1nssl +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_187853/rrfs_v1nssl Checking test 045 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1692,14 +1692,14 @@ Checking test 045 rrfs_v1nssl results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 601.387517 - 0: The maximum resident set size (KB) = 527608 + 0: The total amount of wall time = 733.660475 + 0: The maximum resident set size (KB) = 531036 Test 045 rrfs_v1nssl PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_140438/rrfs_v1nssl_nohailnoccn +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_187853/rrfs_v1nssl_nohailnoccn Checking test 046 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1714,14 +1714,14 @@ Checking test 046 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 589.345741 - 0: The maximum resident set size (KB) = 510928 + 0: The total amount of wall time = 719.173665 + 0: The maximum resident set size (KB) = 521556 Test 046 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_140438/rrfs_conus13km_hrrr_warm +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/rrfs_conus13km_hrrr_warm +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_187853/rrfs_conus13km_hrrr_warm Checking test 047 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -1730,14 +1730,14 @@ Checking test 047 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 233.581670 - 0: The maximum resident set size (KB) = 660440 + 0: The total amount of wall time = 340.626677 + 0: The maximum resident set size (KB) = 662256 Test 047 rrfs_conus13km_hrrr_warm PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_140438/rrfs_conus13km_radar_tten_warm +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_187853/rrfs_conus13km_radar_tten_warm Checking test 048 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -1746,14 +1746,14 @@ Checking test 048 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 235.581461 - 0: The maximum resident set size (KB) = 660008 + 0: The total amount of wall time = 340.314697 + 0: The maximum resident set size (KB) = 667384 Test 048 rrfs_conus13km_radar_tten_warm PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_rrtmgp -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_140438/control_rrtmgp +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_rrtmgp +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_187853/control_rrtmgp Checking test 049 control_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1764,14 +1764,14 @@ Checking test 049 control_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 258.628663 - 0: The maximum resident set size (KB) = 603696 + 0: The total amount of wall time = 266.799838 + 0: The maximum resident set size (KB) = 612096 Test 049 control_rrtmgp PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_rrtmgp_c192 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_140438/control_rrtmgp_c192 +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_rrtmgp_c192 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_187853/control_rrtmgp_c192 Checking test 050 control_rrtmgp_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1782,14 +1782,14 @@ Checking test 050 control_rrtmgp_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 693.378668 - 0: The maximum resident set size (KB) = 806448 + 0: The total amount of wall time = 708.446454 + 0: The maximum resident set size (KB) = 809740 Test 050 control_rrtmgp_c192 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_csawmg -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_140438/control_csawmg +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_csawmg +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_187853/control_csawmg Checking test 051 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1800,14 +1800,14 @@ Checking test 051 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 436.966162 - 0: The maximum resident set size (KB) = 533652 + 0: The total amount of wall time = 452.065926 + 0: The maximum resident set size (KB) = 540000 Test 051 control_csawmg PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_csawmgt -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_140438/control_csawmgt +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_csawmgt +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_187853/control_csawmgt Checking test 052 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1818,14 +1818,14 @@ Checking test 052 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 433.590889 - 0: The maximum resident set size (KB) = 532464 + 0: The total amount of wall time = 532.464205 + 0: The maximum resident set size (KB) = 535588 Test 052 control_csawmgt PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_flake -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_140438/control_flake +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_flake +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_187853/control_flake Checking test 053 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1836,14 +1836,14 @@ Checking test 053 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 311.554430 - 0: The maximum resident set size (KB) = 533208 + 0: The total amount of wall time = 414.316150 + 0: The maximum resident set size (KB) = 541536 Test 053 control_flake PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_ras -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_140438/control_ras +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_ras +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_187853/control_ras Checking test 054 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1854,14 +1854,14 @@ Checking test 054 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 236.197434 - 0: The maximum resident set size (KB) = 495112 + 0: The total amount of wall time = 327.188368 + 0: The maximum resident set size (KB) = 494884 Test 054 control_ras PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_thompson -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_140438/control_thompson +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_thompson +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_187853/control_thompson Checking test 055 control_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1872,14 +1872,14 @@ Checking test 055 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 294.280750 - 0: The maximum resident set size (KB) = 852032 + 0: The total amount of wall time = 320.588420 + 0: The maximum resident set size (KB) = 852448 Test 055 control_thompson PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_thompson_no_aero -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_140438/control_thompson_no_aero +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_thompson_no_aero +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_187853/control_thompson_no_aero Checking test 056 control_thompson_no_aero results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1890,54 +1890,54 @@ Checking test 056 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 284.503622 - 0: The maximum resident set size (KB) = 838136 + 0: The total amount of wall time = 306.587532 + 0: The maximum resident set size (KB) = 833624 Test 056 control_thompson_no_aero PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_wam_repro -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_140438/control_wam_repro +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_wam +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_187853/control_wam Checking test 057 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 179.725279 - 0: The maximum resident set size (KB) = 233252 + 0: The total amount of wall time = 152.230250 + 0: The maximum resident set size (KB) = 231632 Test 057 control_wam PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_140438/control_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_187853/control_debug Checking test 058 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 = 188.363278 - 0: The maximum resident set size (KB) = 629856 + 0: The total amount of wall time = 200.331901 + 0: The maximum resident set size (KB) = 630116 Test 058 control_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_140438/control_2threads_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_187853/control_2threads_debug Checking test 059 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 = 369.364232 - 0: The maximum resident set size (KB) = 683800 + 0: The total amount of wall time = 374.039028 + 0: The maximum resident set size (KB) = 684872 Test 059 control_2threads_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_CubedSphereGrid_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_140438/control_CubedSphereGrid_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_CubedSphereGrid_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_187853/control_CubedSphereGrid_debug Checking test 060 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1964,429 +1964,429 @@ Checking test 060 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 206.964553 - 0: The maximum resident set size (KB) = 628444 + 0: The total amount of wall time = 215.767854 + 0: The maximum resident set size (KB) = 633264 Test 060 control_CubedSphereGrid_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_140438/control_wrtGauss_netcdf_parallel_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_187853/control_wrtGauss_netcdf_parallel_debug Checking test 061 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK + Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 192.414726 - 0: The maximum resident set size (KB) = 631876 + 0: The total amount of wall time = 199.070164 + 0: The maximum resident set size (KB) = 632968 Test 061 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_stochy_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_140438/control_stochy_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_stochy_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_187853/control_stochy_debug Checking test 062 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 = 217.047042 - 0: The maximum resident set size (KB) = 632532 + 0: The total amount of wall time = 227.873657 + 0: The maximum resident set size (KB) = 634984 Test 062 control_stochy_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_lndp_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_140438/control_lndp_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_lndp_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_187853/control_lndp_debug Checking test 063 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 = 193.034296 - 0: The maximum resident set size (KB) = 635936 + 0: The total amount of wall time = 203.871068 + 0: The maximum resident set size (KB) = 633232 Test 063 control_lndp_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_rrtmgp_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_140438/control_rrtmgp_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_rrtmgp_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_187853/control_rrtmgp_debug Checking test 064 control_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 = 208.942830 - 0: The maximum resident set size (KB) = 747556 + 0: The total amount of wall time = 211.437605 + 0: The maximum resident set size (KB) = 748324 Test 064 control_rrtmgp_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_csawmg_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_140438/control_csawmg_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_csawmg_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_187853/control_csawmg_debug Checking test 065 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 = 301.882833 - 0: The maximum resident set size (KB) = 672740 + 0: The total amount of wall time = 308.006394 + 0: The maximum resident set size (KB) = 669056 Test 065 control_csawmg_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_csawmgt_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_140438/control_csawmgt_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_csawmgt_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_187853/control_csawmgt_debug Checking test 066 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 = 298.377727 - 0: The maximum resident set size (KB) = 670852 + 0: The total amount of wall time = 307.699987 + 0: The maximum resident set size (KB) = 673256 Test 066 control_csawmgt_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_ras_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_140438/control_ras_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_ras_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_187853/control_ras_debug Checking test 067 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 = 196.364275 - 0: The maximum resident set size (KB) = 645560 + 0: The total amount of wall time = 200.122112 + 0: The maximum resident set size (KB) = 645188 Test 067 control_ras_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_diag_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_140438/control_diag_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_diag_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_187853/control_diag_debug Checking test 068 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 = 202.318983 - 0: The maximum resident set size (KB) = 684304 + 0: The total amount of wall time = 208.172419 + 0: The maximum resident set size (KB) = 689244 Test 068 control_diag_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_debug_p8 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_140438/control_debug_p8 +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_debug_p8 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_187853/control_debug_p8 Checking test 069 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 = 232.065280 - 0: The maximum resident set size (KB) = 1132312 + 0: The total amount of wall time = 233.573703 + 0: The maximum resident set size (KB) = 1137436 Test 069 control_debug_p8 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_thompson_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_140438/control_thompson_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_thompson_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_187853/control_thompson_debug Checking test 070 control_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 = 222.057981 - 0: The maximum resident set size (KB) = 988728 + 0: The total amount of wall time = 240.351178 + 0: The maximum resident set size (KB) = 991240 Test 070 control_thompson_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_thompson_no_aero_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_140438/control_thompson_no_aero_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_thompson_no_aero_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_187853/control_thompson_no_aero_debug Checking test 071 control_thompson_no_aero_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.723001 - 0: The maximum resident set size (KB) = 982032 + 0: The total amount of wall time = 219.732494 + 0: The maximum resident set size (KB) = 981540 Test 071 control_thompson_no_aero_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_thompson_debug_extdiag -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_140438/control_thompson_extdiag_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_thompson_debug_extdiag +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_187853/control_thompson_extdiag_debug Checking test 072 control_thompson_extdiag_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 = 233.976802 - 0: The maximum resident set size (KB) = 1020340 + 0: The total amount of wall time = 238.546692 + 0: The maximum resident set size (KB) = 1014988 Test 072 control_thompson_extdiag_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_thompson_progcld_thompson_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_140438/control_thompson_progcld_thompson_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_thompson_progcld_thompson_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_187853/control_thompson_progcld_thompson_debug Checking test 073 control_thompson_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 = 223.136039 - 0: The maximum resident set size (KB) = 987644 + 0: The total amount of wall time = 224.850292 + 0: The maximum resident set size (KB) = 991436 Test 073 control_thompson_progcld_thompson_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/fv3_regional_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_140438/regional_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/fv3_regional_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_187853/regional_debug Checking test 074 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 = 324.299923 - 0: The maximum resident set size (KB) = 600900 + 0: The total amount of wall time = 389.021323 + 0: The maximum resident set size (KB) = 607496 Test 074 regional_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/rap_control_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_140438/rap_control_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/rap_control_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_187853/rap_control_debug Checking test 075 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 = 345.067976 - 0: The maximum resident set size (KB) = 999932 + 0: The total amount of wall time = 377.879279 + 0: The maximum resident set size (KB) = 996140 Test 075 rap_control_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/rap_control_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_140438/rap_unified_drag_suite_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/rap_control_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_187853/rap_unified_drag_suite_debug Checking test 076 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 = 343.620672 - 0: The maximum resident set size (KB) = 995232 + 0: The total amount of wall time = 412.418699 + 0: The maximum resident set size (KB) = 995144 Test 076 rap_unified_drag_suite_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/rap_diag_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_140438/rap_diag_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/rap_diag_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_187853/rap_diag_debug Checking test 077 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 = 365.168847 - 0: The maximum resident set size (KB) = 1080196 + 0: The total amount of wall time = 442.396400 + 0: The maximum resident set size (KB) = 1081572 Test 077 rap_diag_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/rap_cires_ugwp_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_140438/rap_cires_ugwp_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/rap_cires_ugwp_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_187853/rap_cires_ugwp_debug Checking test 078 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 = 350.390260 - 0: The maximum resident set size (KB) = 1001060 + 0: The total amount of wall time = 378.729606 + 0: The maximum resident set size (KB) = 995192 Test 078 rap_cires_ugwp_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/rap_cires_ugwp_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_140438/rap_unified_ugwp_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/rap_cires_ugwp_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_187853/rap_unified_ugwp_debug Checking test 079 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 = 351.703376 - 0: The maximum resident set size (KB) = 1001776 + 0: The total amount of wall time = 379.798064 + 0: The maximum resident set size (KB) = 993804 Test 079 rap_unified_ugwp_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/rap_lndp_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_140438/rap_lndp_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/rap_lndp_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_187853/rap_lndp_debug Checking test 080 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 = 348.139216 - 0: The maximum resident set size (KB) = 996396 + 0: The total amount of wall time = 375.706451 + 0: The maximum resident set size (KB) = 996528 Test 080 rap_lndp_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/rap_flake_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_140438/rap_flake_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/rap_flake_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_187853/rap_flake_debug Checking test 081 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 = 343.683759 - 0: The maximum resident set size (KB) = 996248 + 0: The total amount of wall time = 389.395816 + 0: The maximum resident set size (KB) = 999180 Test 081 rap_flake_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/rap_progcld_thompson_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_140438/rap_progcld_thompson_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/rap_progcld_thompson_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_187853/rap_progcld_thompson_debug Checking test 082 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 = 344.498293 - 0: The maximum resident set size (KB) = 999564 + 0: The total amount of wall time = 389.009942 + 0: The maximum resident set size (KB) = 995700 Test 082 rap_progcld_thompson_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/rap_noah_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_140438/rap_noah_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/rap_noah_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_187853/rap_noah_debug Checking test 083 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 = 340.271389 - 0: The maximum resident set size (KB) = 996804 + 0: The total amount of wall time = 425.255767 + 0: The maximum resident set size (KB) = 994936 Test 083 rap_noah_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/rap_rrtmgp_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_140438/rap_rrtmgp_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/rap_rrtmgp_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_187853/rap_rrtmgp_debug Checking test 084 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 = 588.671292 - 0: The maximum resident set size (KB) = 1117496 + 0: The total amount of wall time = 663.724071 + 0: The maximum resident set size (KB) = 1118396 Test 084 rap_rrtmgp_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/rap_sfcdiff_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_140438/rap_sfcdiff_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/rap_sfcdiff_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_187853/rap_sfcdiff_debug Checking test 085 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 = 348.657080 - 0: The maximum resident set size (KB) = 997588 + 0: The total amount of wall time = 422.671587 + 0: The maximum resident set size (KB) = 995556 Test 085 rap_sfcdiff_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_140438/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_187853/rap_noah_sfcdiff_cires_ugwp_debug Checking test 086 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 = 574.837318 - 0: The maximum resident set size (KB) = 995452 + 0: The total amount of wall time = 658.157236 + 0: The maximum resident set size (KB) = 993696 Test 086 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/rrfs_v1beta_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_140438/rrfs_v1beta_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/rrfs_v1beta_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_187853/rrfs_v1beta_debug Checking test 087 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 = 345.572730 - 0: The maximum resident set size (KB) = 995532 + 0: The total amount of wall time = 348.542681 + 0: The maximum resident set size (KB) = 999340 Test 087 rrfs_v1beta_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_wam_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_140438/control_wam_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_wam_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_187853/control_wam_debug Checking test 088 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 366.270666 - 0: The maximum resident set size (KB) = 254800 + 0: The total amount of wall time = 375.211479 + 0: The maximum resident set size (KB) = 254028 Test 088 control_wam_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/hafs_regional_atm -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_140438/hafs_regional_atm +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/hafs_regional_atm +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_187853/hafs_regional_atm Checking test 089 hafs_regional_atm results .... - Comparing atmf006.nc .........OK + Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 1158.824971 - 0: The maximum resident set size (KB) = 708520 + 0: The total amount of wall time = 1326.870780 + 0: The maximum resident set size (KB) = 713692 Test 089 hafs_regional_atm PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_140438/hafs_regional_atm_thompson_gfdlsf +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_187853/hafs_regional_atm_thompson_gfdlsf Checking test 090 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 1346.441054 - 0: The maximum resident set size (KB) = 1072960 + 0: The total amount of wall time = 1515.916672 + 0: The maximum resident set size (KB) = 1071332 Test 090 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/hafs_regional_atm_ocn -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_140438/hafs_regional_atm_ocn +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/hafs_regional_atm_ocn +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_187853/hafs_regional_atm_ocn Checking test 091 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -2395,59 +2395,59 @@ Checking test 091 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 = 465.147479 - 0: The maximum resident set size (KB) = 722412 + 0: The total amount of wall time = 482.095286 + 0: The maximum resident set size (KB) = 723788 Test 091 hafs_regional_atm_ocn PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/hafs_regional_atm_wav -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_140438/hafs_regional_atm_wav +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/hafs_regional_atm_wav +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_187853/hafs_regional_atm_wav Checking test 092 hafs_regional_atm_wav results .... - Comparing atmf006.nc .........OK + Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc .........OK Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 1194.481482 - 0: The maximum resident set size (KB) = 718868 + 0: The total amount of wall time = 1210.811754 + 0: The maximum resident set size (KB) = 720260 Test 092 hafs_regional_atm_wav PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/hafs_regional_atm_ocn_wav -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_140438/hafs_regional_atm_ocn_wav +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/hafs_regional_atm_ocn_wav +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_187853/hafs_regional_atm_ocn_wav Checking test 093 hafs_regional_atm_ocn_wav results .... - Comparing atmf006.nc ............ALT CHECK......OK + Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK Comparing archs.2019_241_06.a .........OK Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 1296.522467 - 0: The maximum resident set size (KB) = 722716 + 0: The total amount of wall time = 1334.803984 + 0: The maximum resident set size (KB) = 724916 Test 093 hafs_regional_atm_ocn_wav PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/hafs_regional_docn -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_140438/hafs_regional_docn +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/hafs_regional_docn +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_187853/hafs_regional_docn Checking test 094 hafs_regional_docn results .... - Comparing atmf006.nc .........OK + Comparing atmf006.nc ............ALT CHECK......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 = 463.560938 - 0: The maximum resident set size (KB) = 717400 + 0: The total amount of wall time = 561.766249 + 0: The maximum resident set size (KB) = 722972 Test 094 hafs_regional_docn PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/hafs_regional_docn_oisst -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_140438/hafs_regional_docn_oisst +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/hafs_regional_docn_oisst +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_187853/hafs_regional_docn_oisst Checking test 095 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -2455,118 +2455,118 @@ Checking test 095 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 = 461.932669 - 0: The maximum resident set size (KB) = 723200 + 0: The total amount of wall time = 559.491355 + 0: The maximum resident set size (KB) = 717500 Test 095 hafs_regional_docn_oisst PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/hafs_regional_datm_cdeps -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_140438/hafs_regional_datm_cdeps +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/hafs_regional_datm_cdeps +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_187853/hafs_regional_datm_cdeps Checking test 096 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 = 1253.420727 - 0: The maximum resident set size (KB) = 848996 + 0: The total amount of wall time = 1372.626980 + 0: The maximum resident set size (KB) = 847096 Test 096 hafs_regional_datm_cdeps PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_140438/datm_cdeps_control_cfsr +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/datm_cdeps_control_cfsr +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_187853/datm_cdeps_control_cfsr Checking test 097 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 = 197.423283 - 0: The maximum resident set size (KB) = 725920 + 0: The total amount of wall time = 197.094774 + 0: The maximum resident set size (KB) = 727768 Test 097 datm_cdeps_control_cfsr PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_140438/datm_cdeps_restart_cfsr +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/datm_cdeps_control_cfsr +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_187853/datm_cdeps_restart_cfsr Checking test 098 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 = 117.064487 - 0: The maximum resident set size (KB) = 724940 + 0: The total amount of wall time = 117.901880 + 0: The maximum resident set size (KB) = 726980 Test 098 datm_cdeps_restart_cfsr PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/datm_cdeps_control_gefs -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_140438/datm_cdeps_control_gefs +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/datm_cdeps_control_gefs +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_187853/datm_cdeps_control_gefs Checking test 099 datm_cdeps_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 189.582399 - 0: The maximum resident set size (KB) = 626892 + 0: The total amount of wall time = 193.005867 + 0: The maximum resident set size (KB) = 624768 Test 099 datm_cdeps_control_gefs PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/datm_cdeps_iau_gefs -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_140438/datm_cdeps_iau_gefs +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/datm_cdeps_iau_gefs +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_187853/datm_cdeps_iau_gefs Checking test 100 datm_cdeps_iau_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 191.479287 - 0: The maximum resident set size (KB) = 625584 + 0: The total amount of wall time = 199.261541 + 0: The maximum resident set size (KB) = 628208 Test 100 datm_cdeps_iau_gefs PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/datm_cdeps_stochy_gefs -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_140438/datm_cdeps_stochy_gefs +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/datm_cdeps_stochy_gefs +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_187853/datm_cdeps_stochy_gefs Checking test 101 datm_cdeps_stochy_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 191.562617 - 0: The maximum resident set size (KB) = 626420 + 0: The total amount of wall time = 201.818009 + 0: The maximum resident set size (KB) = 626580 Test 101 datm_cdeps_stochy_gefs PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/datm_cdeps_bulk_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_140438/datm_cdeps_bulk_cfsr +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/datm_cdeps_bulk_cfsr +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_187853/datm_cdeps_bulk_cfsr Checking test 102 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 = 195.336611 - 0: The maximum resident set size (KB) = 725864 + 0: The total amount of wall time = 197.669138 + 0: The maximum resident set size (KB) = 723388 Test 102 datm_cdeps_bulk_cfsr PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/datm_cdeps_bulk_gefs -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_140438/datm_cdeps_bulk_gefs +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/datm_cdeps_bulk_gefs +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_187853/datm_cdeps_bulk_gefs Checking test 103 datm_cdeps_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 188.990759 - 0: The maximum resident set size (KB) = 622872 + 0: The total amount of wall time = 198.538237 + 0: The maximum resident set size (KB) = 624448 Test 103 datm_cdeps_bulk_gefs PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/datm_cdeps_mx025_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_140438/datm_cdeps_mx025_cfsr +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/datm_cdeps_mx025_cfsr +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_187853/datm_cdeps_mx025_cfsr Checking test 104 datm_cdeps_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -2575,14 +2575,14 @@ Checking test 104 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 = 410.250860 - 0: The maximum resident set size (KB) = 552460 + 0: The total amount of wall time = 417.432933 + 0: The maximum resident set size (KB) = 552264 Test 104 datm_cdeps_mx025_cfsr PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/datm_cdeps_mx025_gefs -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_140438/datm_cdeps_mx025_gefs +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/datm_cdeps_mx025_gefs +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_187853/datm_cdeps_mx025_gefs Checking test 105 datm_cdeps_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -2591,64 +2591,64 @@ Checking test 105 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 407.086944 - 0: The maximum resident set size (KB) = 527744 + 0: The total amount of wall time = 501.000915 + 0: The maximum resident set size (KB) = 527444 Test 105 datm_cdeps_mx025_gefs PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_140438/datm_cdeps_multiple_files_cfsr +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/datm_cdeps_control_cfsr +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_187853/datm_cdeps_multiple_files_cfsr Checking test 106 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 = 192.798834 - 0: The maximum resident set size (KB) = 726440 + 0: The total amount of wall time = 195.448484 + 0: The maximum resident set size (KB) = 726136 Test 106 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_140438/datm_cdeps_3072x1536_cfsr +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_187853/datm_cdeps_3072x1536_cfsr Checking test 107 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 = 266.641803 - 0: The maximum resident set size (KB) = 1837952 + 0: The total amount of wall time = 274.319016 + 0: The maximum resident set size (KB) = 1840428 Test 107 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/datm_cdeps_gfs -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_140438/datm_cdeps_gfs +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/datm_cdeps_gfs +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_187853/datm_cdeps_gfs Checking test 108 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 = 268.024529 - 0: The maximum resident set size (KB) = 1839480 + 0: The total amount of wall time = 272.948500 + 0: The maximum resident set size (KB) = 1840076 Test 108 datm_cdeps_gfs PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/datm_cdeps_debug_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_140438/datm_cdeps_debug_cfsr +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/datm_cdeps_debug_cfsr +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_187853/datm_cdeps_debug_cfsr Checking test 109 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 = 570.994768 - 0: The maximum resident set size (KB) = 735716 + 0: The total amount of wall time = 577.550217 + 0: The maximum resident set size (KB) = 734300 Test 109 datm_cdeps_debug_cfsr PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_atmwav -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_140438/control_atmwav +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_atmwav +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_187853/control_atmwav Checking test 110 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2692,14 +2692,14 @@ Checking test 110 control_atmwav results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 109.762747 - 0: The maximum resident set size (KB) = 492896 + 0: The total amount of wall time = 116.808651 + 0: The maximum resident set size (KB) = 492584 Test 110 control_atmwav PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_atm_aerosols -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_140438/control_atm_aerosols +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_atm_aerosols +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_187853/control_atm_aerosols Checking test 111 control_atm_aerosols results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2746,12 +2746,12 @@ Checking test 111 control_atm_aerosols results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 398.049495 - 0: The maximum resident set size (KB) = 914884 + 0: The total amount of wall time = 486.076196 + 0: The maximum resident set size (KB) = 915868 Test 111 control_atm_aerosols PASS REGRESSION TEST WAS SUCCESSFUL -Fri Apr 29 19:56:30 GMT 2022 -Elapsed time: 01h:24m:49s. Have a nice day! +Mon May 2 21:58:12 GMT 2022 +Elapsed time: 02h:41m:48s. Have a nice day! diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log old mode 100755 new mode 100644 index fec1eec674..496bba67c7 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,27 +1,25 @@ -Fri Apr 29 13:31:58 CDT 2022 +Mon May 2 13:31:10 CDT 2022 Start Regression test -Test 010 compile FAIL - -Compile 001 elapsed time 464 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1,FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 276 seconds. -DAPP=S2SA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 003 elapsed time 432 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 004 elapsed time 352 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 005 elapsed time 356 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 310 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DREPRO=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -Compile 007 elapsed time 201 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp,FV3_GFS_v16_thompson,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 165 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP,FV3_RAP_cires_ugwp,FV3_RAP_unified_ugwp,FV3_RAP_flake -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 182 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP_noah,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 010 elapsed time 153 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 011 elapsed time 386 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 012 elapsed time 370 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 013 elapsed time 249 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 014 elapsed time 117 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 015 elapsed time 349 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 016 elapsed time 351 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v16 -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/cpld_control_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/cpld_control_p8 +Compile 001 elapsed time 628 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1,FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 208 seconds. -DAPP=S2SA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 003 elapsed time 350 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 004 elapsed time 357 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 005 elapsed time 366 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 311 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 182 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp,FV3_GFS_v16_thompson,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 176 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP,FV3_RAP_cires_ugwp,FV3_RAP_unified_ugwp,FV3_RAP_flake -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 165 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP_noah,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 010 elapsed time 169 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 011 elapsed time 559 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 012 elapsed time 587 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 013 elapsed time 189 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 014 elapsed time 91 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 015 elapsed time 520 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 016 elapsed time 365 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v16 -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/cpld_control_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/cpld_control_p8 Checking test 001 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -87,14 +85,14 @@ Checking test 001 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK - 0: The total amount of wall time = 392.391405 - 0: The maximum resident set size (KB) = 1249592 + 0: The total amount of wall time = 389.486871 + 0: The maximum resident set size (KB) = 1253064 Test 001 cpld_control_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/cpld_control_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/cpld_2threads_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/cpld_control_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/cpld_2threads_p8 Checking test 002 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -148,14 +146,14 @@ Checking test 002 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK - 0: The total amount of wall time = 472.468326 - 0: The maximum resident set size (KB) = 1899868 + 0: The total amount of wall time = 479.979241 + 0: The maximum resident set size (KB) = 1903168 Test 002 cpld_2threads_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/cpld_control_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/cpld_decomp_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/cpld_control_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/cpld_decomp_p8 Checking test 003 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -209,14 +207,14 @@ Checking test 003 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK - 0: The total amount of wall time = 395.100644 - 0: The maximum resident set size (KB) = 1247776 + 0: The total amount of wall time = 388.697519 + 0: The maximum resident set size (KB) = 1247948 Test 003 cpld_decomp_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/cpld_control_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/cpld_mpi_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/cpld_control_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/cpld_mpi_p8 Checking test 004 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -270,14 +268,14 @@ Checking test 004 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK - 0: The total amount of wall time = 334.360455 - 0: The maximum resident set size (KB) = 1165388 + 0: The total amount of wall time = 322.465221 + 0: The maximum resident set size (KB) = 1172348 Test 004 cpld_mpi_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/cpld_bmark_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/cpld_bmark_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/cpld_bmark_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/cpld_bmark_p8 Checking test 005 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -323,14 +321,14 @@ Checking test 005 cpld_bmark_p8 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - 0: The total amount of wall time = 1219.998170 - 0: The maximum resident set size (KB) = 3045228 + 0: The total amount of wall time = 1183.404496 + 0: The maximum resident set size (KB) = 3035348 Test 005 cpld_bmark_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/cpld_control_c96_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/cpld_control_c96_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/cpld_control_c96_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/cpld_control_c96_p8 Checking test 006 cpld_control_c96_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -393,14 +391,14 @@ Checking test 006 cpld_control_c96_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 = 379.687629 - 0: The maximum resident set size (KB) = 1260832 + 0: The total amount of wall time = 378.986373 + 0: The maximum resident set size (KB) = 1263932 Test 006 cpld_control_c96_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/cpld_control_c96_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/cpld_restart_c96_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/cpld_control_c96_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/cpld_restart_c96_p8 Checking test 007 cpld_restart_c96_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -451,14 +449,14 @@ Checking test 007 cpld_restart_c96_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 = 222.801611 - 0: The maximum resident set size (KB) = 1251196 + 0: The total amount of wall time = 213.296362 + 0: The maximum resident set size (KB) = 1255992 Test 007 cpld_restart_c96_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/cpld_control_c192_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/cpld_control_c192_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/cpld_control_c192_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/cpld_control_c192_p8 Checking test 008 cpld_control_c192_p8 results .... Comparing sfcf036.tile1.nc .........OK Comparing sfcf036.tile2.nc .........OK @@ -509,14 +507,14 @@ Checking test 008 cpld_control_c192_p8 results .... Comparing RESTART/iced.2021-03-23-64800.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-64800.nc .........OK - 0: The total amount of wall time = 1252.044620 - 0: The maximum resident set size (KB) = 1426548 + 0: The total amount of wall time = 1200.650147 + 0: The maximum resident set size (KB) = 1430656 Test 008 cpld_control_c192_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/cpld_control_c192_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/cpld_restart_c192_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/cpld_control_c192_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/cpld_restart_c192_p8 Checking test 009 cpld_restart_c192_p8 results .... Comparing sfcf036.tile1.nc .........OK Comparing sfcf036.tile2.nc .........OK @@ -567,14 +565,14 @@ Checking test 009 cpld_restart_c192_p8 results .... Comparing RESTART/iced.2021-03-23-64800.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-64800.nc .........OK - 0: The total amount of wall time = 1066.126779 - 0: The maximum resident set size (KB) = 1581156 + 0: The total amount of wall time = 931.798015 + 0: The maximum resident set size (KB) = 1582160 Test 009 cpld_restart_c192_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/cpld_control_c384_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/cpld_control_c384_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/cpld_control_c384_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/cpld_control_c384_p8 Checking test 010 cpld_control_c384_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -618,14 +616,14 @@ Checking test 010 cpld_control_c384_p8 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK - 0: The total amount of wall time = 1372.220102 - 0: The maximum resident set size (KB) = 3017296 + 0: The total amount of wall time = 1309.870670 + 0: The maximum resident set size (KB) = 3026612 Test 010 cpld_control_c384_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/cpld_control_c384_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/cpld_restart_c384_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/cpld_control_c384_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/cpld_restart_c384_p8 Checking test 011 cpld_restart_c384_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -669,14 +667,14 @@ Checking test 011 cpld_restart_c384_p8 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK - 0: The total amount of wall time = 817.996643 - 0: The maximum resident set size (KB) = 3043072 + 0: The total amount of wall time = 737.831850 + 0: The maximum resident set size (KB) = 3035360 Test 011 cpld_restart_c384_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/cpld_debug_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/cpld_debug_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/cpld_debug_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/cpld_debug_p8 Checking test 012 cpld_debug_p8 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -727,14 +725,14 @@ Checking test 012 cpld_debug_p8 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK - 0: The total amount of wall time = 1168.465909 - 0: The maximum resident set size (KB) = 1394304 + 0: The total amount of wall time = 1162.977850 + 0: The maximum resident set size (KB) = 1390260 Test 012 cpld_debug_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/control +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/control Checking test 013 control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -781,14 +779,14 @@ Checking test 013 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 129.166245 - 0: The maximum resident set size (KB) = 464688 + 0: The total amount of wall time = 136.094626 + 0: The maximum resident set size (KB) = 467192 Test 013 control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/control_decomp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/control_decomp Checking test 014 control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -831,28 +829,28 @@ Checking test 014 control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 142.258293 - 0: The maximum resident set size (KB) = 470352 + 0: The total amount of wall time = 139.844483 + 0: The maximum resident set size (KB) = 464008 Test 014 control_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/control_2dwrtdecomp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/control_2dwrtdecomp Checking test 015 control_2dwrtdecomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 125.096627 - 0: The maximum resident set size (KB) = 472036 + 0: The total amount of wall time = 126.909771 + 0: The maximum resident set size (KB) = 461424 Test 015 control_2dwrtdecomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/control_2threads +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/control_2threads Checking test 016 control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -895,14 +893,14 @@ Checking test 016 control_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 151.863540 - 0: The maximum resident set size (KB) = 519276 + 0: The total amount of wall time = 155.437306 + 0: The maximum resident set size (KB) = 514380 Test 016 control_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/control_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/control_restart Checking test 017 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -941,14 +939,14 @@ Checking test 017 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.285205 - 0: The maximum resident set size (KB) = 215772 + 0: The total amount of wall time = 69.900965 + 0: The maximum resident set size (KB) = 208384 Test 017 control_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/control_fhzero +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/control_fhzero Checking test 018 control_fhzero results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -991,14 +989,14 @@ Checking test 018 control_fhzero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 123.386646 - 0: The maximum resident set size (KB) = 467236 + 0: The total amount of wall time = 123.507217 + 0: The maximum resident set size (KB) = 467436 Test 018 control_fhzero PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_CubedSphereGrid -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/control_CubedSphereGrid +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_CubedSphereGrid +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/control_CubedSphereGrid Checking test 019 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1025,14 +1023,14 @@ Checking test 019 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 128.911444 - 0: The maximum resident set size (KB) = 467860 + 0: The total amount of wall time = 127.097042 + 0: The maximum resident set size (KB) = 467144 Test 019 control_CubedSphereGrid PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_latlon -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/control_latlon +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_latlon +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/control_latlon Checking test 020 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1043,14 +1041,14 @@ Checking test 020 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 176.619291 - 0: The maximum resident set size (KB) = 468804 + 0: The total amount of wall time = 128.852699 + 0: The maximum resident set size (KB) = 463880 Test 020 control_latlon PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_wrtGauss_netcdf_parallel -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/control_wrtGauss_netcdf_parallel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_wrtGauss_netcdf_parallel +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/control_wrtGauss_netcdf_parallel Checking test 021 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc .........OK @@ -1061,14 +1059,14 @@ Checking test 021 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 134.337638 - 0: The maximum resident set size (KB) = 470936 + 0: The total amount of wall time = 133.341348 + 0: The maximum resident set size (KB) = 467576 Test 021 control_wrtGauss_netcdf_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_c48 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/control_c48 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_c48 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/control_c48 Checking test 022 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1107,14 +1105,14 @@ Checking test 022 control_c48 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0: The total amount of wall time = 309.399506 -0: The maximum resident set size (KB) = 658584 +0: The total amount of wall time = 328.431190 +0: The maximum resident set size (KB) = 654220 Test 022 control_c48 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_c192 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/control_c192 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_c192 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/control_c192 Checking test 023 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1125,14 +1123,14 @@ Checking test 023 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 476.014442 - 0: The maximum resident set size (KB) = 566880 + 0: The total amount of wall time = 488.413567 + 0: The maximum resident set size (KB) = 565740 Test 023 control_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_c384 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/control_c384 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_c384 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/control_c384 Checking test 024 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1143,14 +1141,14 @@ Checking test 024 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 799.389320 - 0: The maximum resident set size (KB) = 825524 + 0: The total amount of wall time = 803.577124 + 0: The maximum resident set size (KB) = 824272 Test 024 control_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_c384gdas -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/control_c384gdas +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_c384gdas +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/control_c384gdas Checking test 025 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1193,14 +1191,14 @@ Checking test 025 control_c384gdas results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 716.218699 - 0: The maximum resident set size (KB) = 949128 + 0: The total amount of wall time = 693.495793 + 0: The maximum resident set size (KB) = 946380 Test 025 control_c384gdas PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_stochy -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/control_stochy +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_stochy +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/control_stochy Checking test 026 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1211,28 +1209,28 @@ Checking test 026 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 84.776394 - 0: The maximum resident set size (KB) = 470472 + 0: The total amount of wall time = 92.140415 + 0: The maximum resident set size (KB) = 468888 Test 026 control_stochy PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_stochy -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/control_stochy_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_stochy +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/control_stochy_restart Checking test 027 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 = 49.406920 - 0: The maximum resident set size (KB) = 254752 + 0: The total amount of wall time = 48.474554 + 0: The maximum resident set size (KB) = 253124 Test 027 control_stochy_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_lndp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/control_lndp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_lndp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/control_lndp Checking test 028 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1243,14 +1241,14 @@ Checking test 028 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 75.884433 - 0: The maximum resident set size (KB) = 475596 + 0: The total amount of wall time = 77.781179 + 0: The maximum resident set size (KB) = 472036 Test 028 control_lndp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_iovr4 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/control_iovr4 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_iovr4 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/control_iovr4 Checking test 029 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1265,14 +1263,14 @@ Checking test 029 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 133.093911 - 0: The maximum resident set size (KB) = 466416 + 0: The total amount of wall time = 130.992513 + 0: The maximum resident set size (KB) = 467400 Test 029 control_iovr4 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_iovr5 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/control_iovr5 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_iovr5 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/control_iovr5 Checking test 030 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1287,14 +1285,14 @@ Checking test 030 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 131.057988 - 0: The maximum resident set size (KB) = 474940 + 0: The total amount of wall time = 130.175358 + 0: The maximum resident set size (KB) = 464820 Test 030 control_iovr5 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/control_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/control_p8 Checking test 031 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1341,14 +1339,14 @@ Checking test 031 control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 194.443142 - 0: The maximum resident set size (KB) = 977268 + 0: The total amount of wall time = 194.974874 + 0: The maximum resident set size (KB) = 974892 Test 031 control_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_p8_lndp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/control_p8_lndp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_p8_lndp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/control_p8_lndp Checking test 032 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1367,14 +1365,14 @@ Checking test 032 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 357.188829 - 0: The maximum resident set size (KB) = 981396 + 0: The total amount of wall time = 377.685312 + 0: The maximum resident set size (KB) = 973140 Test 032 control_p8_lndp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/control_restart_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/control_restart_p8 Checking test 033 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1413,14 +1411,14 @@ Checking test 033 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 = 103.415339 - 0: The maximum resident set size (KB) = 761188 + 0: The total amount of wall time = 105.459330 + 0: The maximum resident set size (KB) = 756904 Test 033 control_restart_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/control_decomp_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/control_decomp_p8 Checking test 034 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1463,14 +1461,14 @@ Checking test 034 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 = 202.457417 - 0: The maximum resident set size (KB) = 974784 + 0: The total amount of wall time = 198.940585 + 0: The maximum resident set size (KB) = 971916 Test 034 control_decomp_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/control_2threads_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/control_2threads_p8 Checking test 035 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1513,14 +1511,14 @@ Checking test 035 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 = 226.279533 - 0: The maximum resident set size (KB) = 1116608 + 0: The total amount of wall time = 236.214919 + 0: The maximum resident set size (KB) = 1116644 Test 035 control_2threads_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/fv3_regional_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/regional_control +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/fv3_regional_control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/regional_control Checking test 036 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1531,42 +1529,42 @@ Checking test 036 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 306.712807 - 0: The maximum resident set size (KB) = 583684 + 0: The total amount of wall time = 332.740982 + 0: The maximum resident set size (KB) = 586420 Test 036 regional_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/fv3_regional_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/regional_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/fv3_regional_control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/regional_restart Checking test 037 regional_restart results .... Comparing dynf024.nc .........OK Comparing phyf024.nc .........OK Comparing PRSLEV.GrbF24 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 173.266761 - 0: The maximum resident set size (KB) = 588920 + 0: The total amount of wall time = 190.809340 + 0: The maximum resident set size (KB) = 584168 Test 037 regional_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/fv3_regional_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/regional_control_2dwrtdecomp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/fv3_regional_control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/regional_control_2dwrtdecomp Checking test 038 regional_control_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK - 0: The total amount of wall time = 308.892268 - 0: The maximum resident set size (KB) = 581800 + 0: The total amount of wall time = 354.308550 + 0: The maximum resident set size (KB) = 580784 Test 038 regional_control_2dwrtdecomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/fv3_regional_noquilt -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/regional_noquilt +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/fv3_regional_noquilt +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/regional_noquilt Checking test 039 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1574,14 +1572,14 @@ Checking test 039 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 = 313.061325 - 0: The maximum resident set size (KB) = 600124 + 0: The total amount of wall time = 335.516248 + 0: The maximum resident set size (KB) = 598900 Test 039 regional_noquilt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/fv3_regional_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/regional_2threads +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/fv3_regional_control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/regional_2threads Checking test 040 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1592,28 +1590,28 @@ Checking test 040 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 251.404233 - 0: The maximum resident set size (KB) = 584044 + 0: The total amount of wall time = 247.206934 + 0: The maximum resident set size (KB) = 579500 Test 040 regional_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/fv3_regional_netcdf_parallel -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/regional_netcdf_parallel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/fv3_regional_netcdf_parallel +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/regional_netcdf_parallel Checking test 041 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK - 0: The total amount of wall time = 309.595505 - 0: The maximum resident set size (KB) = 586008 + 0: The total amount of wall time = 352.287375 + 0: The maximum resident set size (KB) = 582952 Test 041 regional_netcdf_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/fv3_regional_RRTMGP -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/regional_RRTMGP +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/fv3_regional_RRTMGP +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/regional_RRTMGP Checking test 042 regional_RRTMGP results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1624,14 +1622,14 @@ Checking test 042 regional_RRTMGP results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 383.045124 - 0: The maximum resident set size (KB) = 703068 + 0: The total amount of wall time = 406.045458 + 0: The maximum resident set size (KB) = 699576 Test 042 regional_RRTMGP PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/fv3_regional_3km -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/regional_3km +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/fv3_regional_3km +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/regional_3km Checking test 043 regional_3km results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1642,14 +1640,14 @@ Checking test 043 regional_3km results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 240.851946 - 0: The maximum resident set size (KB) = 625452 + 0: The total amount of wall time = 254.226691 + 0: The maximum resident set size (KB) = 623472 Test 043 regional_3km PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/rap_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/rap_control +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/rap_control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/rap_control Checking test 044 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1696,14 +1694,14 @@ Checking test 044 rap_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 362.055477 - 0: The maximum resident set size (KB) = 844068 + 0: The total amount of wall time = 433.964654 + 0: The maximum resident set size (KB) = 847636 Test 044 rap_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/rap_rrtmgp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/rap_rrtmgp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/rap_rrtmgp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/rap_rrtmgp Checking test 045 rap_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1750,14 +1748,14 @@ Checking test 045 rap_rrtmgp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 400.065140 - 0: The maximum resident set size (KB) = 960824 + 0: The total amount of wall time = 463.511622 + 0: The maximum resident set size (KB) = 963124 Test 045 rap_rrtmgp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/regional_spp_sppt_shum_skeb -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/regional_spp_sppt_shum_skeb +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/regional_spp_sppt_shum_skeb +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/regional_spp_sppt_shum_skeb Checking test 046 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -1768,14 +1766,14 @@ Checking test 046 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 295.159264 - 0: The maximum resident set size (KB) = 927580 + 0: The total amount of wall time = 306.987241 + 0: The maximum resident set size (KB) = 932740 Test 046 regional_spp_sppt_shum_skeb PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/rap_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/rap_2threads +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/rap_control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/rap_2threads Checking test 047 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1822,14 +1820,14 @@ Checking test 047 rap_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 420.291234 - 0: The maximum resident set size (KB) = 907188 + 0: The total amount of wall time = 490.090296 + 0: The maximum resident set size (KB) = 910260 Test 047 rap_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/rap_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/rap_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/rap_control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/rap_restart Checking test 048 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1868,14 +1866,14 @@ Checking test 048 rap_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 188.296398 - 0: The maximum resident set size (KB) = 593692 + 0: The total amount of wall time = 227.952986 + 0: The maximum resident set size (KB) = 598248 Test 048 rap_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/rap_sfcdiff -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/rap_sfcdiff +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/rap_sfcdiff +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/rap_sfcdiff Checking test 049 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1922,14 +1920,14 @@ Checking test 049 rap_sfcdiff results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 537.488595 - 0: The maximum resident set size (KB) = 839072 + 0: The total amount of wall time = 434.075847 + 0: The maximum resident set size (KB) = 847056 Test 049 rap_sfcdiff PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/rap_sfcdiff -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/rap_sfcdiff_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/rap_sfcdiff +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/rap_sfcdiff_restart Checking test 050 rap_sfcdiff_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1968,14 +1966,14 @@ Checking test 050 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 = 183.621335 - 0: The maximum resident set size (KB) = 594120 + 0: The total amount of wall time = 226.238433 + 0: The maximum resident set size (KB) = 596552 Test 050 rap_sfcdiff_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/hrrr_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/hrrr_control +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/hrrr_control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/hrrr_control Checking test 051 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2022,14 +2020,14 @@ Checking test 051 hrrr_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 350.019490 - 0: The maximum resident set size (KB) = 841368 + 0: The total amount of wall time = 416.741866 + 0: The maximum resident set size (KB) = 839232 Test 051 hrrr_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/rrfs_v1beta -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/rrfs_v1beta +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/rrfs_v1beta +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/rrfs_v1beta Checking test 052 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2076,14 +2074,14 @@ Checking test 052 rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 356.026874 - 0: The maximum resident set size (KB) = 837084 + 0: The total amount of wall time = 421.505681 + 0: The maximum resident set size (KB) = 841064 Test 052 rrfs_v1beta PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/rrfs_v1nssl -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/rrfs_v1nssl +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/rrfs_v1nssl +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/rrfs_v1nssl Checking test 053 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2098,14 +2096,14 @@ Checking test 053 rrfs_v1nssl results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 436.191055 - 0: The maximum resident set size (KB) = 524744 + 0: The total amount of wall time = 478.922244 + 0: The maximum resident set size (KB) = 528212 Test 053 rrfs_v1nssl PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/rrfs_v1nssl_nohailnoccn +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/rrfs_v1nssl_nohailnoccn Checking test 054 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2120,14 +2118,14 @@ Checking test 054 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 426.393691 - 0: The maximum resident set size (KB) = 516616 + 0: The total amount of wall time = 474.045513 + 0: The maximum resident set size (KB) = 518728 Test 054 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/rrfs_conus13km_hrrr_warm -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/rrfs_conus13km_hrrr_warm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/rrfs_conus13km_hrrr_warm +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/rrfs_conus13km_hrrr_warm Checking test 055 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2136,14 +2134,14 @@ Checking test 055 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 201.085801 - 0: The maximum resident set size (KB) = 672268 + 0: The total amount of wall time = 196.054366 + 0: The maximum resident set size (KB) = 670568 Test 055 rrfs_conus13km_hrrr_warm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/rrfs_conus13km_radar_tten_warm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/rrfs_conus13km_radar_tten_warm Checking test 056 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2152,14 +2150,14 @@ Checking test 056 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 201.192655 - 0: The maximum resident set size (KB) = 677120 + 0: The total amount of wall time = 197.208145 + 0: The maximum resident set size (KB) = 673808 Test 056 rrfs_conus13km_radar_tten_warm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_rrtmgp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/control_rrtmgp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_rrtmgp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/control_rrtmgp Checking test 057 control_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2170,14 +2168,14 @@ Checking test 057 control_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 188.800851 - 0: The maximum resident set size (KB) = 615108 + 0: The total amount of wall time = 193.812364 + 0: The maximum resident set size (KB) = 608100 Test 057 control_rrtmgp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_rrtmgp_c192 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/control_rrtmgp_c192 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_rrtmgp_c192 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/control_rrtmgp_c192 Checking test 058 control_rrtmgp_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2188,14 +2186,14 @@ Checking test 058 control_rrtmgp_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 503.633218 - 0: The maximum resident set size (KB) = 815508 + 0: The total amount of wall time = 509.115254 + 0: The maximum resident set size (KB) = 809240 Test 058 control_rrtmgp_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_csawmg -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/control_csawmg +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_csawmg +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/control_csawmg Checking test 059 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2206,14 +2204,14 @@ Checking test 059 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 329.646546 - 0: The maximum resident set size (KB) = 537988 + 0: The total amount of wall time = 332.054618 + 0: The maximum resident set size (KB) = 538536 Test 059 control_csawmg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_csawmgt -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/control_csawmgt +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_csawmgt +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/control_csawmgt Checking test 060 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2224,14 +2222,14 @@ Checking test 060 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 315.110255 - 0: The maximum resident set size (KB) = 539412 + 0: The total amount of wall time = 326.858217 + 0: The maximum resident set size (KB) = 536560 Test 060 control_csawmgt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_flake -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/control_flake +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_flake +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/control_flake Checking test 061 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2242,14 +2240,14 @@ Checking test 061 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 237.178220 - 0: The maximum resident set size (KB) = 550592 + 0: The total amount of wall time = 238.574277 + 0: The maximum resident set size (KB) = 533760 Test 061 control_flake PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_ras -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/control_ras +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_ras +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/control_ras Checking test 062 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2260,14 +2258,14 @@ Checking test 062 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 173.054988 - 0: The maximum resident set size (KB) = 502584 + 0: The total amount of wall time = 176.442342 + 0: The maximum resident set size (KB) = 496388 Test 062 control_ras PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_thompson -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/control_thompson +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_thompson +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/control_thompson Checking test 063 control_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2278,14 +2276,14 @@ Checking test 063 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 222.795069 - 0: The maximum resident set size (KB) = 858848 + 0: The total amount of wall time = 233.037405 + 0: The maximum resident set size (KB) = 855308 Test 063 control_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_thompson_no_aero -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/control_thompson_no_aero +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_thompson_no_aero +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/control_thompson_no_aero Checking test 064 control_thompson_no_aero results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2296,54 +2294,54 @@ Checking test 064 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 212.915679 - 0: The maximum resident set size (KB) = 848612 + 0: The total amount of wall time = 221.311042 + 0: The maximum resident set size (KB) = 850316 Test 064 control_thompson_no_aero PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_wam_repro -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/control_wam_repro +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_wam +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/control_wam Checking test 065 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 121.545233 - 0: The maximum resident set size (KB) = 232224 + 0: The total amount of wall time = 109.929715 + 0: The maximum resident set size (KB) = 233400 Test 065 control_wam PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/control_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/control_debug Checking test 066 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 = 160.109537 - 0: The maximum resident set size (KB) = 631076 + 0: The total amount of wall time = 151.222425 + 0: The maximum resident set size (KB) = 632200 Test 066 control_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/control_2threads_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/control_2threads_debug Checking test 067 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.999891 - 0: The maximum resident set size (KB) = 680948 + 0: The total amount of wall time = 226.692320 + 0: The maximum resident set size (KB) = 683924 Test 067 control_2threads_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_CubedSphereGrid_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/control_CubedSphereGrid_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_CubedSphereGrid_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/control_CubedSphereGrid_debug Checking test 068 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2370,429 +2368,429 @@ Checking test 068 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 177.639313 - 0: The maximum resident set size (KB) = 637276 + 0: The total amount of wall time = 168.285234 + 0: The maximum resident set size (KB) = 634408 Test 068 control_CubedSphereGrid_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/control_wrtGauss_netcdf_parallel_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/control_wrtGauss_netcdf_parallel_debug Checking test 069 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 160.695301 - 0: The maximum resident set size (KB) = 634540 + 0: The total amount of wall time = 156.913193 + 0: The maximum resident set size (KB) = 635300 Test 069 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_stochy_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/control_stochy_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_stochy_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/control_stochy_debug Checking test 070 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 = 180.151515 - 0: The maximum resident set size (KB) = 638736 + 0: The total amount of wall time = 176.484659 + 0: The maximum resident set size (KB) = 638160 Test 070 control_stochy_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_lndp_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/control_lndp_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_lndp_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/control_lndp_debug Checking test 071 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 = 169.285124 - 0: The maximum resident set size (KB) = 638960 + 0: The total amount of wall time = 160.641827 + 0: The maximum resident set size (KB) = 640648 Test 071 control_lndp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_rrtmgp_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/control_rrtmgp_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_rrtmgp_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/control_rrtmgp_debug Checking test 072 control_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 = 174.650583 - 0: The maximum resident set size (KB) = 757816 + 0: The total amount of wall time = 168.174584 + 0: The maximum resident set size (KB) = 752296 Test 072 control_rrtmgp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_csawmg_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/control_csawmg_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_csawmg_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/control_csawmg_debug Checking test 073 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 = 247.752596 - 0: The maximum resident set size (KB) = 676212 + 0: The total amount of wall time = 236.374685 + 0: The maximum resident set size (KB) = 677632 Test 073 control_csawmg_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_csawmgt_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/control_csawmgt_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_csawmgt_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/control_csawmgt_debug Checking test 074 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 = 242.253410 - 0: The maximum resident set size (KB) = 678208 + 0: The total amount of wall time = 237.671065 + 0: The maximum resident set size (KB) = 679456 Test 074 control_csawmgt_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_ras_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/control_ras_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_ras_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/control_ras_debug Checking test 075 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 = 169.157041 - 0: The maximum resident set size (KB) = 650316 + 0: The total amount of wall time = 159.604724 + 0: The maximum resident set size (KB) = 644768 Test 075 control_ras_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_diag_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/control_diag_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_diag_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/control_diag_debug Checking test 076 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 = 180.418491 - 0: The maximum resident set size (KB) = 691680 + 0: The total amount of wall time = 164.363510 + 0: The maximum resident set size (KB) = 696396 Test 076 control_diag_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_debug_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/control_debug_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_debug_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/control_debug_p8 Checking test 077 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 = 193.960432 - 0: The maximum resident set size (KB) = 1139388 + 0: The total amount of wall time = 182.300202 + 0: The maximum resident set size (KB) = 1144480 Test 077 control_debug_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_thompson_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/control_thompson_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_thompson_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/control_thompson_debug Checking test 078 control_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 = 188.118859 - 0: The maximum resident set size (KB) = 993144 + 0: The total amount of wall time = 180.330040 + 0: The maximum resident set size (KB) = 999072 Test 078 control_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_thompson_no_aero_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/control_thompson_no_aero_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_thompson_no_aero_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/control_thompson_no_aero_debug Checking test 079 control_thompson_no_aero_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 = 180.796344 - 0: The maximum resident set size (KB) = 992864 + 0: The total amount of wall time = 177.695805 + 0: The maximum resident set size (KB) = 993492 Test 079 control_thompson_no_aero_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_thompson_debug_extdiag -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/control_thompson_extdiag_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_thompson_debug_extdiag +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/control_thompson_extdiag_debug Checking test 080 control_thompson_extdiag_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 = 198.136061 - 0: The maximum resident set size (KB) = 1022392 + 0: The total amount of wall time = 190.999665 + 0: The maximum resident set size (KB) = 1032736 Test 080 control_thompson_extdiag_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_thompson_progcld_thompson_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/control_thompson_progcld_thompson_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_thompson_progcld_thompson_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/control_thompson_progcld_thompson_debug Checking test 081 control_thompson_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 = 185.661532 - 0: The maximum resident set size (KB) = 996680 + 0: The total amount of wall time = 180.067577 + 0: The maximum resident set size (KB) = 998724 Test 081 control_thompson_progcld_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/fv3_regional_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/regional_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/fv3_regional_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/regional_debug Checking test 082 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 = 253.649758 - 0: The maximum resident set size (KB) = 611924 + 0: The total amount of wall time = 317.342496 + 0: The maximum resident set size (KB) = 609796 Test 082 regional_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/rap_control_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/rap_control_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/rap_control_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/rap_control_debug Checking test 083 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 = 276.615292 - 0: The maximum resident set size (KB) = 1007100 + 0: The total amount of wall time = 277.133341 + 0: The maximum resident set size (KB) = 1004500 Test 083 rap_control_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/rap_control_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/rap_unified_drag_suite_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/rap_control_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/rap_unified_drag_suite_debug Checking test 084 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 = 288.218464 - 0: The maximum resident set size (KB) = 1000356 + 0: The total amount of wall time = 278.331691 + 0: The maximum resident set size (KB) = 1003500 Test 084 rap_unified_drag_suite_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/rap_diag_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/rap_diag_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/rap_diag_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/rap_diag_debug Checking test 085 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.477986 - 0: The maximum resident set size (KB) = 1090044 + 0: The total amount of wall time = 286.524373 + 0: The maximum resident set size (KB) = 1092060 Test 085 rap_diag_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/rap_cires_ugwp_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/rap_cires_ugwp_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/rap_cires_ugwp_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/rap_cires_ugwp_debug Checking test 086 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 = 276.106784 - 0: The maximum resident set size (KB) = 1003136 + 0: The total amount of wall time = 276.007489 + 0: The maximum resident set size (KB) = 1007960 Test 086 rap_cires_ugwp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/rap_cires_ugwp_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/rap_unified_ugwp_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/rap_cires_ugwp_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/rap_unified_ugwp_debug Checking test 087 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 = 285.120757 - 0: The maximum resident set size (KB) = 1008164 + 0: The total amount of wall time = 285.708751 + 0: The maximum resident set size (KB) = 1008108 Test 087 rap_unified_ugwp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/rap_lndp_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/rap_lndp_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/rap_lndp_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/rap_lndp_debug Checking test 088 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 = 279.207271 - 0: The maximum resident set size (KB) = 1003212 + 0: The total amount of wall time = 277.156101 + 0: The maximum resident set size (KB) = 1010552 Test 088 rap_lndp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/rap_flake_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/rap_flake_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/rap_flake_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/rap_flake_debug Checking test 089 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 = 274.214363 - 0: The maximum resident set size (KB) = 1009568 + 0: The total amount of wall time = 274.982155 + 0: The maximum resident set size (KB) = 1008208 Test 089 rap_flake_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/rap_progcld_thompson_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/rap_progcld_thompson_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/rap_progcld_thompson_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/rap_progcld_thompson_debug Checking test 090 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 = 302.419941 - 0: The maximum resident set size (KB) = 1003740 + 0: The total amount of wall time = 271.947737 + 0: The maximum resident set size (KB) = 1004396 Test 090 rap_progcld_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/rap_noah_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/rap_noah_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/rap_noah_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/rap_noah_debug Checking test 091 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 = 270.392888 - 0: The maximum resident set size (KB) = 1004304 + 0: The total amount of wall time = 327.334323 + 0: The maximum resident set size (KB) = 1005528 Test 091 rap_noah_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/rap_rrtmgp_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/rap_rrtmgp_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/rap_rrtmgp_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/rap_rrtmgp_debug Checking test 092 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 = 465.755999 - 0: The maximum resident set size (KB) = 1129620 + 0: The total amount of wall time = 459.662871 + 0: The maximum resident set size (KB) = 1131352 Test 092 rap_rrtmgp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/rap_sfcdiff_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/rap_sfcdiff_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/rap_sfcdiff_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/rap_sfcdiff_debug Checking test 093 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 = 283.614719 - 0: The maximum resident set size (KB) = 1007760 + 0: The total amount of wall time = 269.663318 + 0: The maximum resident set size (KB) = 1004868 Test 093 rap_sfcdiff_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/rap_noah_sfcdiff_cires_ugwp_debug Checking test 094 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 = 465.446199 - 0: The maximum resident set size (KB) = 1001060 + 0: The total amount of wall time = 442.965595 + 0: The maximum resident set size (KB) = 1002656 Test 094 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/rrfs_v1beta_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/rrfs_v1beta_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/rrfs_v1beta_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/rrfs_v1beta_debug Checking test 095 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 = 270.977067 - 0: The maximum resident set size (KB) = 1001668 + 0: The total amount of wall time = 269.998721 + 0: The maximum resident set size (KB) = 1004456 Test 095 rrfs_v1beta_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_wam_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/control_wam_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_wam_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/control_wam_debug Checking test 096 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 294.186812 - 0: The maximum resident set size (KB) = 258772 + 0: The total amount of wall time = 287.440155 + 0: The maximum resident set size (KB) = 259964 Test 096 control_wam_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/hafs_regional_atm -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/hafs_regional_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/hafs_regional_atm +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/hafs_regional_atm Checking test 097 hafs_regional_atm results .... Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 287.183934 - 0: The maximum resident set size (KB) = 711456 + 0: The total amount of wall time = 273.450732 + 0: The maximum resident set size (KB) = 717252 Test 097 hafs_regional_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/hafs_regional_atm_thompson_gfdlsf +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/hafs_regional_atm_thompson_gfdlsf Checking test 098 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 397.711897 - 0: The maximum resident set size (KB) = 1077276 + 0: The total amount of wall time = 384.658854 + 0: The maximum resident set size (KB) = 1085572 Test 098 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/hafs_regional_atm_ocn -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/hafs_regional_atm_ocn +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/hafs_regional_atm_ocn +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/hafs_regional_atm_ocn Checking test 099 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -2801,28 +2799,28 @@ Checking test 099 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 = 365.460040 - 0: The maximum resident set size (KB) = 730808 + 0: The total amount of wall time = 356.674680 + 0: The maximum resident set size (KB) = 729616 Test 099 hafs_regional_atm_ocn PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/hafs_regional_atm_wav -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/hafs_regional_atm_wav +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/hafs_regional_atm_wav +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/hafs_regional_atm_wav Checking test 100 hafs_regional_atm_wav results .... - Comparing atmf006.nc .........OK + Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc .........OK Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 839.584966 - 0: The maximum resident set size (KB) = 730752 + 0: The total amount of wall time = 830.490900 + 0: The maximum resident set size (KB) = 732304 Test 100 hafs_regional_atm_wav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/hafs_regional_atm_ocn_wav -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/hafs_regional_atm_ocn_wav +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/hafs_regional_atm_ocn_wav +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/hafs_regional_atm_ocn_wav Checking test 101 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -2831,28 +2829,28 @@ Checking test 101 hafs_regional_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 926.953060 - 0: The maximum resident set size (KB) = 724624 + 0: The total amount of wall time = 929.076391 + 0: The maximum resident set size (KB) = 726020 Test 101 hafs_regional_atm_ocn_wav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/hafs_regional_1nest_atm -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/hafs_regional_1nest_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/hafs_regional_1nest_atm +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/hafs_regional_1nest_atm Checking test 102 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 = 440.696999 - 0: The maximum resident set size (KB) = 316028 + 0: The total amount of wall time = 436.418313 + 0: The maximum resident set size (KB) = 314564 Test 102 hafs_regional_1nest_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/hafs_regional_telescopic_2nests_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/hafs_regional_telescopic_2nests_atm Checking test 103 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -2861,30 +2859,30 @@ Checking test 103 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 = 481.837318 - 0: The maximum resident set size (KB) = 329148 + 0: The total amount of wall time = 459.932142 + 0: The maximum resident set size (KB) = 331272 Test 103 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/hafs_global_1nest_atm -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/hafs_global_1nest_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/hafs_global_1nest_atm +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/hafs_global_1nest_atm Checking test 104 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.578351 - 0: The maximum resident set size (KB) = 207192 + 0: The total amount of wall time = 206.690759 + 0: The maximum resident set size (KB) = 205268 Test 104 hafs_global_1nest_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/hafs_global_multiple_4nests_atm -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/hafs_global_multiple_4nests_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/hafs_global_multiple_4nests_atm +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/hafs_global_multiple_4nests_atm Checking test 105 hafs_global_multiple_4nests_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK + Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK @@ -2893,44 +2891,44 @@ Checking test 105 hafs_global_multiple_4nests_atm results .... Comparing sfc.nest04.f006.nc .........OK Comparing sfc.nest04.f006.nc .........OK Comparing atm.nest05.f006.nc .........OK - Comparing sfc.nest05.f006.nc ............ALT CHECK......OK + Comparing sfc.nest05.f006.nc .........OK - 0: The total amount of wall time = 551.720639 - 0: The maximum resident set size (KB) = 275856 + 0: The total amount of wall time = 557.689343 + 0: The maximum resident set size (KB) = 278540 Test 105 hafs_global_multiple_4nests_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/hafs_regional_specified_moving_1nest_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/hafs_regional_specified_moving_1nest_atm Checking test 106 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc ............ALT CHECK......OK - 0: The total amount of wall time = 263.207431 - 0: The maximum resident set size (KB) = 319048 + 0: The total amount of wall time = 261.450391 + 0: The maximum resident set size (KB) = 318064 Test 106 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/hafs_regional_storm_following_1nest_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/hafs_regional_storm_following_1nest_atm Checking test 107 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 ............ALT CHECK......OK - 0: The total amount of wall time = 253.269393 - 0: The maximum resident set size (KB) = 315236 + 0: The total amount of wall time = 253.349667 + 0: The maximum resident set size (KB) = 319856 Test 107 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/hafs_regional_storm_following_1nest_atm_ocn +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/hafs_regional_storm_following_1nest_atm_ocn Checking test 108 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -2939,46 +2937,46 @@ Checking test 108 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 = 261.770472 - 0: The maximum resident set size (KB) = 326916 + 0: The total amount of wall time = 261.936448 + 0: The maximum resident set size (KB) = 325868 Test 108 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/hafs_regional_storm_following_1nest_atm_ocn_wav +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 109 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 949.611145 - 0: The maximum resident set size (KB) = 336168 + 0: The total amount of wall time = 758.995223 + 0: The maximum resident set size (KB) = 333172 Test 109 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/hafs_global_storm_following_1nest_atm -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/hafs_global_storm_following_1nest_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/hafs_global_storm_following_1nest_atm +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/hafs_global_storm_following_1nest_atm Checking test 110 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 = 85.396613 - 0: The maximum resident set size (KB) = 225344 + 0: The total amount of wall time = 93.160827 + 0: The maximum resident set size (KB) = 225956 Test 110 hafs_global_storm_following_1nest_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/hafs_regional_docn -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/hafs_regional_docn +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/hafs_regional_docn +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/hafs_regional_docn Checking test 111 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -2986,14 +2984,14 @@ Checking test 111 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 = 358.295906 - 0: The maximum resident set size (KB) = 732784 + 0: The total amount of wall time = 353.150672 + 0: The maximum resident set size (KB) = 728348 Test 111 hafs_regional_docn PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/hafs_regional_docn_oisst -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/hafs_regional_docn_oisst +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/hafs_regional_docn_oisst +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/hafs_regional_docn_oisst Checking test 112 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3001,118 +2999,118 @@ Checking test 112 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 = 358.455338 - 0: The maximum resident set size (KB) = 727756 + 0: The total amount of wall time = 353.728579 + 0: The maximum resident set size (KB) = 732200 Test 112 hafs_regional_docn_oisst PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/hafs_regional_datm_cdeps -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/hafs_regional_datm_cdeps +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/hafs_regional_datm_cdeps +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/hafs_regional_datm_cdeps Checking test 113 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 = 929.666710 - 0: The maximum resident set size (KB) = 855020 + 0: The total amount of wall time = 915.830808 + 0: The maximum resident set size (KB) = 855476 Test 113 hafs_regional_datm_cdeps PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/datm_cdeps_control_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/datm_cdeps_control_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/datm_cdeps_control_cfsr Checking test 114 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 = 144.874815 - 0: The maximum resident set size (KB) = 738116 + 0: The total amount of wall time = 142.043832 + 0: The maximum resident set size (KB) = 722712 Test 114 datm_cdeps_control_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/datm_cdeps_restart_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/datm_cdeps_control_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/datm_cdeps_restart_cfsr Checking test 115 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 = 96.897793 - 0: The maximum resident set size (KB) = 721556 + 0: The total amount of wall time = 97.774760 + 0: The maximum resident set size (KB) = 722212 Test 115 datm_cdeps_restart_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/datm_cdeps_control_gefs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/datm_cdeps_control_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/datm_cdeps_control_gefs +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/datm_cdeps_control_gefs Checking test 116 datm_cdeps_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 137.380792 - 0: The maximum resident set size (KB) = 623388 + 0: The total amount of wall time = 138.752039 + 0: The maximum resident set size (KB) = 622428 Test 116 datm_cdeps_control_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/datm_cdeps_iau_gefs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/datm_cdeps_iau_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/datm_cdeps_iau_gefs +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/datm_cdeps_iau_gefs Checking test 117 datm_cdeps_iau_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 149.062711 - 0: The maximum resident set size (KB) = 622336 + 0: The total amount of wall time = 139.137759 + 0: The maximum resident set size (KB) = 621676 Test 117 datm_cdeps_iau_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/datm_cdeps_stochy_gefs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/datm_cdeps_stochy_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/datm_cdeps_stochy_gefs +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/datm_cdeps_stochy_gefs Checking test 118 datm_cdeps_stochy_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 146.636326 - 0: The maximum resident set size (KB) = 619128 + 0: The total amount of wall time = 139.975646 + 0: The maximum resident set size (KB) = 623112 Test 118 datm_cdeps_stochy_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/datm_cdeps_bulk_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/datm_cdeps_bulk_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/datm_cdeps_bulk_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/datm_cdeps_bulk_cfsr Checking test 119 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 = 149.027094 - 0: The maximum resident set size (KB) = 719004 + 0: The total amount of wall time = 144.580840 + 0: The maximum resident set size (KB) = 722004 Test 119 datm_cdeps_bulk_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/datm_cdeps_bulk_gefs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/datm_cdeps_bulk_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/datm_cdeps_bulk_gefs +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/datm_cdeps_bulk_gefs Checking test 120 datm_cdeps_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 139.263080 - 0: The maximum resident set size (KB) = 622648 + 0: The total amount of wall time = 145.181239 + 0: The maximum resident set size (KB) = 620552 Test 120 datm_cdeps_bulk_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/datm_cdeps_mx025_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/datm_cdeps_mx025_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/datm_cdeps_mx025_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/datm_cdeps_mx025_cfsr Checking test 121 datm_cdeps_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -3121,14 +3119,14 @@ Checking test 121 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 = 306.486321 - 0: The maximum resident set size (KB) = 572352 + 0: The total amount of wall time = 296.204330 + 0: The maximum resident set size (KB) = 562712 Test 121 datm_cdeps_mx025_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/datm_cdeps_mx025_gefs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/datm_cdeps_mx025_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/datm_cdeps_mx025_gefs +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/datm_cdeps_mx025_gefs Checking test 122 datm_cdeps_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -3137,64 +3135,64 @@ Checking test 122 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 302.928910 - 0: The maximum resident set size (KB) = 530324 + 0: The total amount of wall time = 290.416194 + 0: The maximum resident set size (KB) = 533160 Test 122 datm_cdeps_mx025_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/datm_cdeps_multiple_files_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/datm_cdeps_control_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/datm_cdeps_multiple_files_cfsr Checking test 123 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 = 144.128315 - 0: The maximum resident set size (KB) = 722340 + 0: The total amount of wall time = 139.208695 + 0: The maximum resident set size (KB) = 718744 Test 123 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/datm_cdeps_3072x1536_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/datm_cdeps_3072x1536_cfsr Checking test 124 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 = 213.199849 - 0: The maximum resident set size (KB) = 1897740 + 0: The total amount of wall time = 186.746743 + 0: The maximum resident set size (KB) = 1832660 Test 124 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/datm_cdeps_gfs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/datm_cdeps_gfs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/datm_cdeps_gfs +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/datm_cdeps_gfs Checking test 125 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 = 212.790758 - 0: The maximum resident set size (KB) = 1835276 + 0: The total amount of wall time = 191.936333 + 0: The maximum resident set size (KB) = 1836136 Test 125 datm_cdeps_gfs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/datm_cdeps_debug_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/datm_cdeps_debug_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/datm_cdeps_debug_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/datm_cdeps_debug_cfsr Checking test 126 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 = 447.266256 - 0: The maximum resident set size (KB) = 728840 + 0: The total amount of wall time = 439.238740 + 0: The maximum resident set size (KB) = 728764 Test 126 datm_cdeps_debug_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_atmwav -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/control_atmwav +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_atmwav +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/control_atmwav Checking test 127 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -3238,14 +3236,14 @@ Checking test 127 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.238138 - 0: The maximum resident set size (KB) = 494052 + 0: The total amount of wall time = 82.942150 + 0: The maximum resident set size (KB) = 492064 Test 127 control_atmwav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_c384gdas_wav -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/control_c384gdas_wav +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_c384gdas_wav +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/control_c384gdas_wav Checking test 128 control_c384gdas_wav results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -3291,14 +3289,14 @@ Checking test 128 control_c384gdas_wav results .... Comparing 20210322.030000.restart.gnh_10m .........OK Comparing 20210322.030000.restart.gsh_15m .........OK - 0: The total amount of wall time = 699.572356 - 0: The maximum resident set size (KB) = 1023844 + 0: The total amount of wall time = 682.875810 + 0: The maximum resident set size (KB) = 1019980 Test 128 control_c384gdas_wav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/INTEL/control_atm_aerosols -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_442828/control_atm_aerosols +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/INTEL/control_atm_aerosols +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_341146/control_atm_aerosols Checking test 129 control_atm_aerosols results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3345,12 +3343,12 @@ Checking test 129 control_atm_aerosols results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 287.429560 - 0: The maximum resident set size (KB) = 911700 + 0: The total amount of wall time = 288.251287 + 0: The maximum resident set size (KB) = 910320 Test 129 control_atm_aerosols PASS REGRESSION TEST WAS SUCCESSFUL -Fri Apr 29 14:37:13 CDT 2022 -Elapsed time: 01h:05m:16s. Have a nice day! +Mon May 2 14:34:39 CDT 2022 +Elapsed time: 01h:03m:30s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_cray.log b/tests/RegressionTests_wcoss_cray.log index 587c5f14f6..bbe884997b 100644 --- a/tests/RegressionTests_wcoss_cray.log +++ b/tests/RegressionTests_wcoss_cray.log @@ -1,18 +1,18 @@ -Fri Apr 29 17:13:08 UTC 2022 +Mon May 2 17:28:53 UTC 2022 Start Regression test -Compile 001 elapsed time 723 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 002 elapsed time 725 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 003 elapsed time 773 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 004 elapsed time 667 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DREPRO=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -Compile 005 elapsed time 519 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp,FV3_GFS_v16_thompson,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 006 elapsed time 488 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP,FV3_RAP_cires_ugwp,FV3_RAP_unified_ugwp,FV3_RAP_flake -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 007 elapsed time 489 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP_noah,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 479 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 807 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 - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/control -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_42530/control +Compile 001 elapsed time 803 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 002 elapsed time 836 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 003 elapsed time 821 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 004 elapsed time 715 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 005 elapsed time 645 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp,FV3_GFS_v16_thompson,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 006 elapsed time 589 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP,FV3_RAP_cires_ugwp,FV3_RAP_unified_ugwp,FV3_RAP_flake -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 007 elapsed time 593 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP_noah,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 576 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 991 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 + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/control +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_41185/control Checking test 001 control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -59,14 +59,14 @@ Checking test 001 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 141.517986 -The maximum resident set size (KB) = 421060 +The total amount of wall time = 144.049370 +The maximum resident set size (KB) = 421208 Test 001 control PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/control -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_42530/control_decomp +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/control +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_41185/control_decomp Checking test 002 control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -109,28 +109,28 @@ Checking test 002 control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 143.351181 -The maximum resident set size (KB) = 417824 +The total amount of wall time = 148.740405 +The maximum resident set size (KB) = 417932 Test 002 control_decomp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/control -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_42530/control_2dwrtdecomp +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/control +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_41185/control_2dwrtdecomp Checking test 003 control_2dwrtdecomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 136.246787 -The maximum resident set size (KB) = 421000 +The total amount of wall time = 135.836538 +The maximum resident set size (KB) = 421196 Test 003 control_2dwrtdecomp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/control -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_42530/control_restart +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/control +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_41185/control_restart Checking test 004 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -169,14 +169,14 @@ Checking test 004 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 75.872008 -The maximum resident set size (KB) = 156108 +The total amount of wall time = 81.026181 +The maximum resident set size (KB) = 156540 Test 004 control_restart PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/control -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_42530/control_fhzero +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/control +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_41185/control_fhzero Checking test 005 control_fhzero results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -219,14 +219,14 @@ Checking test 005 control_fhzero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 132.065720 -The maximum resident set size (KB) = 420992 +The total amount of wall time = 137.132918 +The maximum resident set size (KB) = 421212 Test 005 control_fhzero PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/control_CubedSphereGrid -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_42530/control_CubedSphereGrid +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/control_CubedSphereGrid +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_41185/control_CubedSphereGrid Checking test 006 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -253,14 +253,14 @@ Checking test 006 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 132.899017 -The maximum resident set size (KB) = 421196 +The total amount of wall time = 139.398407 +The maximum resident set size (KB) = 421300 Test 006 control_CubedSphereGrid PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/control_latlon -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_42530/control_latlon +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/control_latlon +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_41185/control_latlon Checking test 007 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -271,14 +271,14 @@ Checking test 007 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 136.610438 -The maximum resident set size (KB) = 421132 +The total amount of wall time = 140.154061 +The maximum resident set size (KB) = 421248 Test 007 control_latlon PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/control_wrtGauss_netcdf_parallel -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_42530/control_wrtGauss_netcdf_parallel +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/control_wrtGauss_netcdf_parallel +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_41185/control_wrtGauss_netcdf_parallel Checking test 008 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -289,14 +289,14 @@ Checking test 008 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 137.613744 -The maximum resident set size (KB) = 421028 +The total amount of wall time = 143.000022 +The maximum resident set size (KB) = 421304 Test 008 control_wrtGauss_netcdf_parallel PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/control_c48 -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_42530/control_c48 +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/control_c48 +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_41185/control_c48 Checking test 009 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -335,14 +335,14 @@ Checking test 009 control_c48 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 429.881820 -The maximum resident set size (KB) = 623944 +The total amount of wall time = 455.111479 +The maximum resident set size (KB) = 624104 Test 009 control_c48 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/control_c192 -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_42530/control_c192 +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/control_c192 +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_41185/control_c192 Checking test 010 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -353,14 +353,14 @@ Checking test 010 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 531.884791 -The maximum resident set size (KB) = 518540 +The total amount of wall time = 559.417370 +The maximum resident set size (KB) = 518676 Test 010 control_c192 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/control_stochy -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_42530/control_stochy +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/control_stochy +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_41185/control_stochy Checking test 011 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -371,28 +371,28 @@ Checking test 011 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 93.885826 -The maximum resident set size (KB) = 423476 +The total amount of wall time = 97.828934 +The maximum resident set size (KB) = 423584 Test 011 control_stochy PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/control_stochy -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_42530/control_stochy_restart +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/control_stochy +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_41185/control_stochy_restart Checking test 012 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 = 55.294913 -The maximum resident set size (KB) = 173092 +The total amount of wall time = 57.340684 +The maximum resident set size (KB) = 173812 Test 012 control_stochy_restart PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/control_lndp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_42530/control_lndp +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/control_lndp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_41185/control_lndp Checking test 013 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -403,14 +403,14 @@ Checking test 013 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 85.452108 -The maximum resident set size (KB) = 425244 +The total amount of wall time = 90.206790 +The maximum resident set size (KB) = 425600 Test 013 control_lndp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/control_iovr4 -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_42530/control_iovr4 +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/control_iovr4 +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_41185/control_iovr4 Checking test 014 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -425,14 +425,14 @@ Checking test 014 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 140.175012 -The maximum resident set size (KB) = 420884 +The total amount of wall time = 148.027858 +The maximum resident set size (KB) = 421116 Test 014 control_iovr4 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/control_iovr5 -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_42530/control_iovr5 +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/control_iovr5 +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_41185/control_iovr5 Checking test 015 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -447,14 +447,14 @@ Checking test 015 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 141.544916 -The maximum resident set size (KB) = 420980 +The total amount of wall time = 147.250813 +The maximum resident set size (KB) = 421116 Test 015 control_iovr5 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/control_p8 -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_42530/control_p8 +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/control_p8 +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_41185/control_p8 Checking test 016 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -501,14 +501,14 @@ Checking test 016 control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 213.138913 -The maximum resident set size (KB) = 923200 +The total amount of wall time = 235.424153 +The maximum resident set size (KB) = 923236 Test 016 control_p8 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/control_p8_lndp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_42530/control_p8_lndp +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/control_p8_lndp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_41185/control_p8_lndp Checking test 017 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -527,14 +527,14 @@ Checking test 017 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -The total amount of wall time = 388.538955 -The maximum resident set size (KB) = 920916 +The total amount of wall time = 428.893380 +The maximum resident set size (KB) = 921084 Test 017 control_p8_lndp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/control_p8 -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_42530/control_restart_p8 +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/control_p8 +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_41185/control_restart_p8 Checking test 018 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -573,14 +573,14 @@ Checking test 018 control_restart_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 115.392255 -The maximum resident set size (KB) = 706404 +The total amount of wall time = 123.894820 +The maximum resident set size (KB) = 706748 Test 018 control_restart_p8 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/control_p8 -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_42530/control_decomp_p8 +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/control_p8 +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_41185/control_decomp_p8 Checking test 019 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -623,14 +623,14 @@ Checking test 019 control_decomp_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 218.780106 -The maximum resident set size (KB) = 919376 +The total amount of wall time = 235.825283 +The maximum resident set size (KB) = 919184 Test 019 control_decomp_p8 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/fv3_regional_control -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_42530/regional_control +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/fv3_regional_control +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_41185/regional_control Checking test 020 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -641,42 +641,42 @@ Checking test 020 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -The total amount of wall time = 341.893775 -The maximum resident set size (KB) = 532664 +The total amount of wall time = 379.401999 +The maximum resident set size (KB) = 533164 Test 020 regional_control PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/fv3_regional_control -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_42530/regional_restart +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/fv3_regional_control +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_41185/regional_restart Checking test 021 regional_restart results .... Comparing dynf024.nc .........OK Comparing phyf024.nc .........OK Comparing PRSLEV.GrbF24 .........OK Comparing NATLEV.GrbF24 .........OK -The total amount of wall time = 204.125161 -The maximum resident set size (KB) = 526420 +The total amount of wall time = 222.412005 +The maximum resident set size (KB) = 527088 Test 021 regional_restart PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/fv3_regional_control -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_42530/regional_control_2dwrtdecomp +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/fv3_regional_control +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_41185/regional_control_2dwrtdecomp Checking test 022 regional_control_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK -The total amount of wall time = 342.884646 -The maximum resident set size (KB) = 532592 +The total amount of wall time = 372.992540 +The maximum resident set size (KB) = 533124 Test 022 regional_control_2dwrtdecomp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/fv3_regional_noquilt -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_42530/regional_noquilt +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/fv3_regional_noquilt +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_41185/regional_noquilt Checking test 023 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -684,28 +684,28 @@ Checking test 023 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 = 372.286068 -The maximum resident set size (KB) = 533732 +The total amount of wall time = 404.973678 +The maximum resident set size (KB) = 534076 Test 023 regional_noquilt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/fv3_regional_netcdf_parallel -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_42530/regional_netcdf_parallel +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/fv3_regional_netcdf_parallel +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_41185/regional_netcdf_parallel Checking test 024 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK -The total amount of wall time = 337.373698 -The maximum resident set size (KB) = 527084 +The total amount of wall time = 376.331800 +The maximum resident set size (KB) = 527524 Test 024 regional_netcdf_parallel PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/fv3_regional_RRTMGP -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_42530/regional_RRTMGP +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/fv3_regional_RRTMGP +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_41185/regional_RRTMGP Checking test 025 regional_RRTMGP results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -716,14 +716,14 @@ Checking test 025 regional_RRTMGP results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -The total amount of wall time = 435.659659 -The maximum resident set size (KB) = 646336 +The total amount of wall time = 468.910125 +The maximum resident set size (KB) = 646728 Test 025 regional_RRTMGP PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/fv3_regional_3km -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_42530/regional_3km +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/fv3_regional_3km +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_41185/regional_3km Checking test 026 regional_3km results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -734,14 +734,14 @@ Checking test 026 regional_3km results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 296.638208 -The maximum resident set size (KB) = 558992 +The total amount of wall time = 317.465988 +The maximum resident set size (KB) = 559348 Test 026 regional_3km PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/rap_control -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_42530/rap_control +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/rap_control +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_41185/rap_control Checking test 027 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -788,14 +788,14 @@ Checking test 027 rap_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 382.091247 -The maximum resident set size (KB) = 788336 +The total amount of wall time = 462.253084 +The maximum resident set size (KB) = 788516 Test 027 rap_control PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/rap_rrtmgp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_42530/rap_rrtmgp +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/rap_rrtmgp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_41185/rap_rrtmgp Checking test 028 rap_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -842,14 +842,14 @@ Checking test 028 rap_rrtmgp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 420.408640 -The maximum resident set size (KB) = 906000 +The total amount of wall time = 498.475291 +The maximum resident set size (KB) = 906452 Test 028 rap_rrtmgp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/regional_spp_sppt_shum_skeb -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_42530/regional_spp_sppt_shum_skeb +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/regional_spp_sppt_shum_skeb +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_41185/regional_spp_sppt_shum_skeb Checking test 029 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -860,14 +860,14 @@ Checking test 029 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 324.845128 -The maximum resident set size (KB) = 854404 +The total amount of wall time = 352.218089 +The maximum resident set size (KB) = 854656 Test 029 regional_spp_sppt_shum_skeb PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/rap_control -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_42530/rap_restart +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/rap_control +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_41185/rap_restart Checking test 030 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -906,14 +906,14 @@ Checking test 030 rap_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 199.563669 -The maximum resident set size (KB) = 529772 +The total amount of wall time = 242.083229 +The maximum resident set size (KB) = 530044 Test 030 rap_restart PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/rap_sfcdiff -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_42530/rap_sfcdiff +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/rap_sfcdiff +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_41185/rap_sfcdiff Checking test 031 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -960,14 +960,14 @@ Checking test 031 rap_sfcdiff results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 387.065188 -The maximum resident set size (KB) = 785552 +The total amount of wall time = 457.306911 +The maximum resident set size (KB) = 785796 Test 031 rap_sfcdiff PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/rap_sfcdiff -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_42530/rap_sfcdiff_restart +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/rap_sfcdiff +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_41185/rap_sfcdiff_restart Checking test 032 rap_sfcdiff_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1006,14 +1006,14 @@ Checking test 032 rap_sfcdiff_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 202.103623 -The maximum resident set size (KB) = 530428 +The total amount of wall time = 244.090180 +The maximum resident set size (KB) = 530820 Test 032 rap_sfcdiff_restart PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/hrrr_control -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_42530/hrrr_control +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/hrrr_control +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_41185/hrrr_control Checking test 033 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1060,14 +1060,14 @@ Checking test 033 hrrr_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 368.753136 -The maximum resident set size (KB) = 783096 +The total amount of wall time = 439.349672 +The maximum resident set size (KB) = 783436 Test 033 hrrr_control PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/rrfs_v1beta -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_42530/rrfs_v1beta +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/rrfs_v1beta +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_41185/rrfs_v1beta Checking test 034 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1114,14 +1114,14 @@ Checking test 034 rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 374.006511 -The maximum resident set size (KB) = 783272 +The total amount of wall time = 443.623529 +The maximum resident set size (KB) = 783476 Test 034 rrfs_v1beta PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/rrfs_v1nssl -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_42530/rrfs_v1nssl +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/rrfs_v1nssl +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_41185/rrfs_v1nssl Checking test 035 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1136,14 +1136,14 @@ Checking test 035 rrfs_v1nssl results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 474.238535 -The maximum resident set size (KB) = 474812 +The total amount of wall time = 508.480475 +The maximum resident set size (KB) = 474920 Test 035 rrfs_v1nssl PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/rrfs_v1nssl_nohailnoccn -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_42530/rrfs_v1nssl_nohailnoccn +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/rrfs_v1nssl_nohailnoccn +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_41185/rrfs_v1nssl_nohailnoccn Checking test 036 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1158,14 +1158,14 @@ Checking test 036 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 453.533591 -The maximum resident set size (KB) = 466676 +The total amount of wall time = 492.441041 +The maximum resident set size (KB) = 468508 Test 036 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/rrfs_conus13km_hrrr_warm -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_42530/rrfs_conus13km_hrrr_warm +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/rrfs_conus13km_hrrr_warm +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_41185/rrfs_conus13km_hrrr_warm Checking test 037 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -1174,14 +1174,14 @@ Checking test 037 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 251.193002 -The maximum resident set size (KB) = 598056 +The total amount of wall time = 266.880065 +The maximum resident set size (KB) = 598844 Test 037 rrfs_conus13km_hrrr_warm PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/rrfs_conus13km_radar_tten_warm -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_42530/rrfs_conus13km_radar_tten_warm +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/rrfs_conus13km_radar_tten_warm +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_41185/rrfs_conus13km_radar_tten_warm Checking test 038 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -1190,14 +1190,14 @@ Checking test 038 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 256.464134 -The maximum resident set size (KB) = 601352 +The total amount of wall time = 279.819602 +The maximum resident set size (KB) = 601380 Test 038 rrfs_conus13km_radar_tten_warm PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/control_rrtmgp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_42530/control_rrtmgp +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/control_rrtmgp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_41185/control_rrtmgp Checking test 039 control_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1208,14 +1208,14 @@ Checking test 039 control_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 210.808752 -The maximum resident set size (KB) = 561916 +The total amount of wall time = 219.300573 +The maximum resident set size (KB) = 562148 Test 039 control_rrtmgp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/control_rrtmgp_c192 -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_42530/control_rrtmgp_c192 +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/control_rrtmgp_c192 +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_41185/control_rrtmgp_c192 Checking test 040 control_rrtmgp_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1226,14 +1226,14 @@ Checking test 040 control_rrtmgp_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 578.448047 -The maximum resident set size (KB) = 762988 +The total amount of wall time = 601.906601 +The maximum resident set size (KB) = 763296 Test 040 control_rrtmgp_c192 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/control_csawmg -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_42530/control_csawmg +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/control_csawmg +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_41185/control_csawmg Checking test 041 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1244,14 +1244,14 @@ Checking test 041 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 353.115659 -The maximum resident set size (KB) = 486984 +The total amount of wall time = 368.611582 +The maximum resident set size (KB) = 486956 Test 041 control_csawmg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/control_csawmgt -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_42530/control_csawmgt +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/control_csawmgt +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_41185/control_csawmgt Checking test 042 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1262,14 +1262,14 @@ Checking test 042 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 348.600401 -The maximum resident set size (KB) = 487320 +The total amount of wall time = 369.594582 +The maximum resident set size (KB) = 487168 Test 042 control_csawmgt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/control_flake -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_42530/control_flake +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/control_flake +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_41185/control_flake Checking test 043 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1280,14 +1280,14 @@ Checking test 043 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 226.899339 -The maximum resident set size (KB) = 492056 +The total amount of wall time = 235.794793 +The maximum resident set size (KB) = 492428 Test 043 control_flake PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/control_ras -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_42530/control_ras +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/control_ras +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_41185/control_ras Checking test 044 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1298,40 +1298,40 @@ Checking test 044 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 188.686637 -The maximum resident set size (KB) = 455328 +The total amount of wall time = 193.277019 +The maximum resident set size (KB) = 455868 Test 044 control_ras PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/control_wam_repro -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_42530/control_wam_repro +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/control_wam +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_41185/control_wam Checking test 045 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 119.230189 -The maximum resident set size (KB) = 168168 +The total amount of wall time = 113.178245 +The maximum resident set size (KB) = 168428 Test 045 control_wam PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/control_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_42530/control_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/control_debug +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_41185/control_debug Checking test 046 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 = 143.705019 -The maximum resident set size (KB) = 583760 +The total amount of wall time = 146.651876 +The maximum resident set size (KB) = 583620 Test 046 control_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/control_CubedSphereGrid_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_42530/control_CubedSphereGrid_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/control_CubedSphereGrid_debug +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_41185/control_CubedSphereGrid_debug Checking test 047 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1358,429 +1358,429 @@ Checking test 047 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 153.457722 -The maximum resident set size (KB) = 583936 +The total amount of wall time = 155.265674 +The maximum resident set size (KB) = 584496 Test 047 control_CubedSphereGrid_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/control_wrtGauss_netcdf_parallel_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_42530/control_wrtGauss_netcdf_parallel_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/control_wrtGauss_netcdf_parallel_debug +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_41185/control_wrtGauss_netcdf_parallel_debug Checking test 048 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 = 145.486634 -The maximum resident set size (KB) = 583632 +The total amount of wall time = 148.181838 +The maximum resident set size (KB) = 583668 Test 048 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/control_stochy_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_42530/control_stochy_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/control_stochy_debug +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_41185/control_stochy_debug Checking test 049 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 = 163.986971 -The maximum resident set size (KB) = 589020 +The total amount of wall time = 166.073993 +The maximum resident set size (KB) = 588244 Test 049 control_stochy_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/control_lndp_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_42530/control_lndp_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/control_lndp_debug +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_41185/control_lndp_debug Checking test 050 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 = 148.998736 -The maximum resident set size (KB) = 588188 +The total amount of wall time = 150.858490 +The maximum resident set size (KB) = 588300 Test 050 control_lndp_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/control_rrtmgp_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_42530/control_rrtmgp_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/control_rrtmgp_debug +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_41185/control_rrtmgp_debug Checking test 051 control_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 = 159.338587 -The maximum resident set size (KB) = 704348 +The total amount of wall time = 162.467049 +The maximum resident set size (KB) = 702200 Test 051 control_rrtmgp_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/control_csawmg_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_42530/control_csawmg_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/control_csawmg_debug +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_41185/control_csawmg_debug Checking test 052 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 = 233.903086 -The maximum resident set size (KB) = 625492 +The total amount of wall time = 247.874697 +The maximum resident set size (KB) = 626048 Test 052 control_csawmg_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/control_csawmgt_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_42530/control_csawmgt_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/control_csawmgt_debug +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_41185/control_csawmgt_debug Checking test 053 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 = 230.429820 -The maximum resident set size (KB) = 626308 +The total amount of wall time = 244.313562 +The maximum resident set size (KB) = 625412 Test 053 control_csawmgt_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/control_ras_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_42530/control_ras_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/control_ras_debug +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_41185/control_ras_debug Checking test 054 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 = 149.196905 -The maximum resident set size (KB) = 595424 +The total amount of wall time = 152.125595 +The maximum resident set size (KB) = 595420 Test 054 control_ras_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/control_diag_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_42530/control_diag_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/control_diag_debug +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_41185/control_diag_debug Checking test 055 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 = 155.214954 -The maximum resident set size (KB) = 641676 +The total amount of wall time = 157.893997 +The maximum resident set size (KB) = 641580 Test 055 control_diag_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/control_debug_p8 -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_42530/control_debug_p8 +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/control_debug_p8 +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_41185/control_debug_p8 Checking test 056 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 = 176.482117 -The maximum resident set size (KB) = 1089472 +The total amount of wall time = 189.691529 +The maximum resident set size (KB) = 1089340 Test 056 control_debug_p8 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/control_thompson_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_42530/control_thompson_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/control_thompson_debug +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_41185/control_thompson_debug Checking test 057 control_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 = 175.223712 -The maximum resident set size (KB) = 943540 +The total amount of wall time = 188.061042 +The maximum resident set size (KB) = 943528 Test 057 control_thompson_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/control_thompson_no_aero_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_42530/control_thompson_no_aero_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/control_thompson_no_aero_debug +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_41185/control_thompson_no_aero_debug Checking test 058 control_thompson_no_aero_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.757335 -The maximum resident set size (KB) = 939164 +The total amount of wall time = 169.607006 +The maximum resident set size (KB) = 939468 Test 058 control_thompson_no_aero_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/control_thompson_debug_extdiag -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_42530/control_thompson_extdiag_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/control_thompson_debug_extdiag +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_41185/control_thompson_extdiag_debug Checking test 059 control_thompson_extdiag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 182.839638 -The maximum resident set size (KB) = 973284 +The total amount of wall time = 187.751774 +The maximum resident set size (KB) = 974196 Test 059 control_thompson_extdiag_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/control_thompson_progcld_thompson_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_42530/control_thompson_progcld_thompson_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/control_thompson_progcld_thompson_debug +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_41185/control_thompson_progcld_thompson_debug Checking test 060 control_thompson_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 = 175.628130 -The maximum resident set size (KB) = 943520 +The total amount of wall time = 179.360434 +The maximum resident set size (KB) = 943364 Test 060 control_thompson_progcld_thompson_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/fv3_regional_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_42530/regional_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/fv3_regional_debug +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_41185/regional_debug Checking test 061 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 = 248.689706 -The maximum resident set size (KB) = 553308 +The total amount of wall time = 254.984887 +The maximum resident set size (KB) = 553272 Test 061 regional_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/rap_control_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_42530/rap_control_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/rap_control_debug +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_41185/rap_control_debug Checking test 062 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 = 271.212187 -The maximum resident set size (KB) = 949728 +The total amount of wall time = 272.738267 +The maximum resident set size (KB) = 949792 Test 062 rap_control_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/rap_control_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_42530/rap_unified_drag_suite_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/rap_control_debug +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_41185/rap_unified_drag_suite_debug Checking test 063 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 = 269.662396 -The maximum resident set size (KB) = 949620 +The total amount of wall time = 274.569611 +The maximum resident set size (KB) = 949712 Test 063 rap_unified_drag_suite_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/rap_diag_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_42530/rap_diag_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/rap_diag_debug +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_41185/rap_diag_debug Checking test 064 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 = 288.381892 -The maximum resident set size (KB) = 1032764 +The total amount of wall time = 297.441036 +The maximum resident set size (KB) = 1032812 Test 064 rap_diag_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/rap_cires_ugwp_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_42530/rap_cires_ugwp_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/rap_cires_ugwp_debug +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_41185/rap_cires_ugwp_debug Checking test 065 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 = 276.570679 -The maximum resident set size (KB) = 955788 +The total amount of wall time = 279.340096 +The maximum resident set size (KB) = 951800 Test 065 rap_cires_ugwp_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/rap_cires_ugwp_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_42530/rap_unified_ugwp_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/rap_cires_ugwp_debug +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_41185/rap_unified_ugwp_debug Checking test 066 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 = 275.143074 -The maximum resident set size (KB) = 949764 +The total amount of wall time = 282.933607 +The maximum resident set size (KB) = 949744 Test 066 rap_unified_ugwp_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/rap_lndp_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_42530/rap_lndp_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/rap_lndp_debug +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_41185/rap_lndp_debug Checking test 067 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 = 273.549041 -The maximum resident set size (KB) = 954380 +The total amount of wall time = 275.874275 +The maximum resident set size (KB) = 954404 Test 067 rap_lndp_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/rap_flake_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_42530/rap_flake_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/rap_flake_debug +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_41185/rap_flake_debug Checking test 068 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 = 270.527400 -The maximum resident set size (KB) = 949748 +The total amount of wall time = 274.469182 +The maximum resident set size (KB) = 949776 Test 068 rap_flake_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/rap_progcld_thompson_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_42530/rap_progcld_thompson_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/rap_progcld_thompson_debug +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_41185/rap_progcld_thompson_debug Checking test 069 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 = 270.685154 -The maximum resident set size (KB) = 949732 +The total amount of wall time = 275.452658 +The maximum resident set size (KB) = 949684 Test 069 rap_progcld_thompson_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/rap_noah_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_42530/rap_noah_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/rap_noah_debug +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_41185/rap_noah_debug Checking test 070 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 = 264.889236 -The maximum resident set size (KB) = 948696 +The total amount of wall time = 268.017703 +The maximum resident set size (KB) = 948608 Test 070 rap_noah_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/rap_rrtmgp_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_42530/rap_rrtmgp_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/rap_rrtmgp_debug +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_41185/rap_rrtmgp_debug Checking test 071 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 = 449.837031 -The maximum resident set size (KB) = 1072692 +The total amount of wall time = 451.675879 +The maximum resident set size (KB) = 1072688 Test 071 rap_rrtmgp_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/rap_sfcdiff_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_42530/rap_sfcdiff_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/rap_sfcdiff_debug +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_41185/rap_sfcdiff_debug Checking test 072 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 = 270.303985 -The maximum resident set size (KB) = 949564 +The total amount of wall time = 274.127704 +The maximum resident set size (KB) = 949612 Test 072 rap_sfcdiff_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_42530/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_41185/rap_noah_sfcdiff_cires_ugwp_debug Checking test 073 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 = 439.408882 -The maximum resident set size (KB) = 949504 +The total amount of wall time = 442.934493 +The maximum resident set size (KB) = 949516 Test 073 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/rrfs_v1beta_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_42530/rrfs_v1beta_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/rrfs_v1beta_debug +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_41185/rrfs_v1beta_debug Checking test 074 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 = 267.039173 -The maximum resident set size (KB) = 950688 +The total amount of wall time = 267.238646 +The maximum resident set size (KB) = 950540 Test 074 rrfs_v1beta_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/control_wam_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_42530/control_wam_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/control_wam_debug +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_41185/control_wam_debug Checking test 075 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -The total amount of wall time = 271.780314 -The maximum resident set size (KB) = 197484 +The total amount of wall time = 274.265746 +The maximum resident set size (KB) = 197232 Test 075 control_wam_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/hafs_regional_atm -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_42530/hafs_regional_atm +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/hafs_regional_atm +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_41185/hafs_regional_atm Checking test 076 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -The total amount of wall time = 354.579070 -The maximum resident set size (KB) = 646588 +The total amount of wall time = 406.261194 +The maximum resident set size (KB) = 643916 Test 076 hafs_regional_atm PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/hafs_regional_atm_thompson_gfdlsf -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_42530/hafs_regional_atm_thompson_gfdlsf +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/hafs_regional_atm_thompson_gfdlsf +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_41185/hafs_regional_atm_thompson_gfdlsf Checking test 077 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 405.794914 -The maximum resident set size (KB) = 1000160 +The total amount of wall time = 481.369258 +The maximum resident set size (KB) = 993996 Test 077 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/hafs_regional_atm_ocn -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_42530/hafs_regional_atm_ocn +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/hafs_regional_atm_ocn +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_41185/hafs_regional_atm_ocn Checking test 078 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -1789,28 +1789,28 @@ Checking test 078 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 = 548.853995 -The maximum resident set size (KB) = 646284 +The total amount of wall time = 613.819645 +The maximum resident set size (KB) = 646644 Test 078 hafs_regional_atm_ocn PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/hafs_regional_atm_wav -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_42530/hafs_regional_atm_wav +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/hafs_regional_atm_wav +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_41185/hafs_regional_atm_wav Checking test 079 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK -The total amount of wall time = 939.268232 -The maximum resident set size (KB) = 643404 +The total amount of wall time = 972.985508 +The maximum resident set size (KB) = 643624 Test 079 hafs_regional_atm_wav PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/hafs_regional_atm_ocn_wav -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_42530/hafs_regional_atm_ocn_wav +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/hafs_regional_atm_ocn_wav +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_41185/hafs_regional_atm_ocn_wav Checking test 080 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -1819,28 +1819,28 @@ Checking test 080 hafs_regional_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK -The total amount of wall time = 1009.983986 -The maximum resident set size (KB) = 643296 +The total amount of wall time = 1051.654458 +The maximum resident set size (KB) = 643496 Test 080 hafs_regional_atm_ocn_wav PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/hafs_regional_1nest_atm -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_42530/hafs_regional_1nest_atm +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/hafs_regional_1nest_atm +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_41185/hafs_regional_1nest_atm Checking test 081 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 = 377.452271 -The maximum resident set size (KB) = 239828 +The total amount of wall time = 391.382742 +The maximum resident set size (KB) = 240208 Test 081 hafs_regional_1nest_atm PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/hafs_regional_telescopic_2nests_atm -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_42530/hafs_regional_telescopic_2nests_atm +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/hafs_regional_telescopic_2nests_atm +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_41185/hafs_regional_telescopic_2nests_atm Checking test 082 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -1849,56 +1849,56 @@ Checking test 082 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -The total amount of wall time = 397.962896 -The maximum resident set size (KB) = 247852 +The total amount of wall time = 426.753038 +The maximum resident set size (KB) = 248932 Test 082 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/hafs_global_1nest_atm -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_42530/hafs_global_1nest_atm +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/hafs_global_1nest_atm +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_41185/hafs_global_1nest_atm Checking test 083 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 = 170.770570 -The maximum resident set size (KB) = 146980 +The total amount of wall time = 175.167984 +The maximum resident set size (KB) = 147300 Test 083 hafs_global_1nest_atm PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/hafs_regional_specified_moving_1nest_atm -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_42530/hafs_regional_specified_moving_1nest_atm +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/hafs_regional_specified_moving_1nest_atm +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_41185/hafs_regional_specified_moving_1nest_atm Checking test 084 hafs_regional_specified_moving_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 = 237.411350 -The maximum resident set size (KB) = 249548 +The total amount of wall time = 252.694701 +The maximum resident set size (KB) = 249900 Test 084 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/hafs_regional_storm_following_1nest_atm -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_42530/hafs_regional_storm_following_1nest_atm +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/hafs_regional_storm_following_1nest_atm +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_41185/hafs_regional_storm_following_1nest_atm Checking test 085 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 = 224.770013 -The maximum resident set size (KB) = 249284 +The total amount of wall time = 251.653993 +The maximum resident set size (KB) = 249992 Test 085 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/hafs_regional_storm_following_1nest_atm_ocn -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_42530/hafs_regional_storm_following_1nest_atm_ocn +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/hafs_regional_storm_following_1nest_atm_ocn +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_41185/hafs_regional_storm_following_1nest_atm_ocn Checking test 086 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -1907,14 +1907,14 @@ Checking test 086 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 = 271.110730 -The maximum resident set size (KB) = 254456 +The total amount of wall time = 286.312498 +The maximum resident set size (KB) = 253228 Test 086 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_42530/hafs_regional_storm_following_1nest_atm_ocn_wav +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_41185/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 087 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -1925,26 +1925,26 @@ Checking test 087 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 = 570.920762 -The maximum resident set size (KB) = 258988 +The total amount of wall time = 582.128138 +The maximum resident set size (KB) = 259140 Test 087 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/hafs_global_storm_following_1nest_atm -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_42530/hafs_global_storm_following_1nest_atm +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/hafs_global_storm_following_1nest_atm +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_41185/hafs_global_storm_following_1nest_atm Checking test 088 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 = 68.976481 -The maximum resident set size (KB) = 164896 +The total amount of wall time = 72.406660 +The maximum resident set size (KB) = 165444 Test 088 hafs_global_storm_following_1nest_atm PASS REGRESSION TEST WAS SUCCESSFUL -Fri Apr 29 17:54:08 UTC 2022 -Elapsed time: 00h:41m:00s. Have a nice day! +Mon May 2 18:16:52 UTC 2022 +Elapsed time: 00h:47m:59s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_dell_p3.log b/tests/RegressionTests_wcoss_dell_p3.log index 5af261832b..1d5e509781 100644 --- a/tests/RegressionTests_wcoss_dell_p3.log +++ b/tests/RegressionTests_wcoss_dell_p3.log @@ -1,25 +1,29 @@ -Fri Apr 29 17:06:23 UTC 2022 +Mon May 2 17:53:12 UTC 2022 Start Regression test -Compile 001 elapsed time 2099 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1,FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 576 seconds. -DAPP=S2SA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 003 elapsed time 1124 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Test 011 compile FAIL + +Test 011 compile FAIL + +Compile 001 elapsed time 2496 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1,FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 585 seconds. -DAPP=S2SA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 003 elapsed time 1186 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release Compile 004 elapsed time 1275 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 005 elapsed time 1277 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 854 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DREPRO=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -Compile 007 elapsed time 471 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp,FV3_GFS_v16_thompson,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 339 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP,FV3_RAP_cires_ugwp,FV3_RAP_unified_ugwp,FV3_RAP_flake -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 359 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP_noah,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 005 elapsed time 1284 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 912 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 479 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp,FV3_GFS_v16_thompson,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 347 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP,FV3_RAP_cires_ugwp,FV3_RAP_unified_ugwp,FV3_RAP_flake -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 370 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP_noah,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug Compile 010 elapsed time 288 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 011 elapsed time 1538 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 012 elapsed time 1487 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 013 elapsed time 796 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 014 elapsed time 317 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 015 elapsed time 1169 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 016 elapsed time 1060 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v16 -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/cpld_control_p8 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/cpld_control_p8 +Compile 011 elapsed time 1832 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 012 elapsed time 1853 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 013 elapsed time 881 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 014 elapsed time 318 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 015 elapsed time 1545 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 016 elapsed time 1132 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v16 -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/cpld_control_p8 +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/cpld_control_p8 Checking test 001 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -85,14 +89,14 @@ Checking test 001 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK -[0] The total amount of wall time = 435.451887 -[0] The maximum resident set size (KB) = 1269480 +[0] The total amount of wall time = 434.008166 +[0] The maximum resident set size (KB) = 1270876 Test 001 cpld_control_p8 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/cpld_control_p8 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/cpld_2threads_p8 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/cpld_control_p8 +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/cpld_2threads_p8 Checking test 002 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -146,14 +150,14 @@ Checking test 002 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK -[0] The total amount of wall time = 460.852413 -[0] The maximum resident set size (KB) = 1751708 +[0] The total amount of wall time = 474.395798 +[0] The maximum resident set size (KB) = 1753452 Test 002 cpld_2threads_p8 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/cpld_control_p8 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/cpld_decomp_p8 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/cpld_control_p8 +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/cpld_decomp_p8 Checking test 003 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -207,14 +211,14 @@ Checking test 003 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK -[0] The total amount of wall time = 426.055698 -[0] The maximum resident set size (KB) = 1259952 +[0] The total amount of wall time = 431.670764 +[0] The maximum resident set size (KB) = 1266724 Test 003 cpld_decomp_p8 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/cpld_control_p8 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/cpld_mpi_p8 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/cpld_control_p8 +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/cpld_mpi_p8 Checking test 004 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -268,14 +272,14 @@ Checking test 004 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK -[0] The total amount of wall time = 350.559495 -[0] The maximum resident set size (KB) = 1156992 +[0] The total amount of wall time = 369.158184 +[0] The maximum resident set size (KB) = 1158472 Test 004 cpld_mpi_p8 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/cpld_bmark_p8 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/cpld_bmark_p8 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/cpld_bmark_p8 +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/cpld_bmark_p8 Checking test 005 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -321,14 +325,14 @@ Checking test 005 cpld_bmark_p8 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK -[0] The total amount of wall time = 1193.490325 -[0] The maximum resident set size (KB) = 3016520 +[0] The total amount of wall time = 1316.804035 +[0] The maximum resident set size (KB) = 3019540 Test 005 cpld_bmark_p8 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/cpld_control_c96_p8 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/cpld_control_c96_p8 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/cpld_control_c96_p8 +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/cpld_control_c96_p8 Checking test 006 cpld_control_c96_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -391,14 +395,14 @@ Checking test 006 cpld_control_c96_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 = 415.836226 -[0] The maximum resident set size (KB) = 1267748 +[0] The total amount of wall time = 425.140776 +[0] The maximum resident set size (KB) = 1268788 Test 006 cpld_control_c96_p8 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/cpld_control_c96_p8 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/cpld_restart_c96_p8 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/cpld_control_c96_p8 +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/cpld_restart_c96_p8 Checking test 007 cpld_restart_c96_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -449,14 +453,14 @@ Checking test 007 cpld_restart_c96_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 = 232.498813 -[0] The maximum resident set size (KB) = 1255880 +[0] The total amount of wall time = 236.424433 +[0] The maximum resident set size (KB) = 1259152 Test 007 cpld_restart_c96_p8 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/cpld_control_c192_p8 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/cpld_control_c192_p8 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/cpld_control_c192_p8 +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/cpld_control_c192_p8 Checking test 008 cpld_control_c192_p8 results .... Comparing sfcf036.tile1.nc .........OK Comparing sfcf036.tile2.nc .........OK @@ -507,14 +511,14 @@ Checking test 008 cpld_control_c192_p8 results .... Comparing RESTART/iced.2021-03-23-64800.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-64800.nc .........OK -[0] The total amount of wall time = 1371.098311 -[0] The maximum resident set size (KB) = 1416280 +[0] The total amount of wall time = 1376.689855 +[0] The maximum resident set size (KB) = 1412712 Test 008 cpld_control_c192_p8 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/cpld_control_c192_p8 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/cpld_restart_c192_p8 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/cpld_control_c192_p8 +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/cpld_restart_c192_p8 Checking test 009 cpld_restart_c192_p8 results .... Comparing sfcf036.tile1.nc .........OK Comparing sfcf036.tile2.nc .........OK @@ -565,14 +569,14 @@ Checking test 009 cpld_restart_c192_p8 results .... Comparing RESTART/iced.2021-03-23-64800.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-64800.nc .........OK -[0] The total amount of wall time = 895.775753 -[0] The maximum resident set size (KB) = 1594116 +[0] The total amount of wall time = 888.895858 +[0] The maximum resident set size (KB) = 1598872 Test 009 cpld_restart_c192_p8 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/cpld_control_c384_p8 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/cpld_control_c384_p8 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/cpld_control_c384_p8 +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/cpld_control_c384_p8 Checking test 010 cpld_control_c384_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -616,14 +620,14 @@ Checking test 010 cpld_control_c384_p8 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK -[0] The total amount of wall time = 1267.045374 -[0] The maximum resident set size (KB) = 3021032 +[0] The total amount of wall time = 1465.487206 +[0] The maximum resident set size (KB) = 3016800 Test 010 cpld_control_c384_p8 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/cpld_control_c384_p8 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/cpld_restart_c384_p8 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/cpld_control_c384_p8 +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/cpld_restart_c384_p8 Checking test 011 cpld_restart_c384_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -667,14 +671,14 @@ Checking test 011 cpld_restart_c384_p8 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK -[0] The total amount of wall time = 878.417713 -[0] The maximum resident set size (KB) = 3027708 +[0] The total amount of wall time = 737.934878 +[0] The maximum resident set size (KB) = 3032084 Test 011 cpld_restart_c384_p8 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/cpld_debug_p8 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/cpld_debug_p8 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/cpld_debug_p8 +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/cpld_debug_p8 Checking test 012 cpld_debug_p8 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -725,14 +729,14 @@ Checking test 012 cpld_debug_p8 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK -[0] The total amount of wall time = 1268.376348 -[0] The maximum resident set size (KB) = 1369232 +[0] The total amount of wall time = 1266.447567 +[0] The maximum resident set size (KB) = 1368148 Test 012 cpld_debug_p8 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/control -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/control +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/control +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/control Checking test 013 control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -779,14 +783,14 @@ Checking test 013 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 142.362109 -[0] The maximum resident set size (KB) = 464680 +[0] The total amount of wall time = 144.218444 +[0] The maximum resident set size (KB) = 464880 Test 013 control PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/control -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/control_decomp +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/control +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/control_decomp Checking test 014 control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -829,28 +833,28 @@ Checking test 014 control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 154.116237 -[0] The maximum resident set size (KB) = 466732 +[0] The total amount of wall time = 154.541316 +[0] The maximum resident set size (KB) = 466244 Test 014 control_decomp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/control -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/control_2dwrtdecomp +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/control +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/control_2dwrtdecomp Checking test 015 control_2dwrtdecomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK -[0] The total amount of wall time = 135.408126 -[0] The maximum resident set size (KB) = 465280 +[0] The total amount of wall time = 138.423798 +[0] The maximum resident set size (KB) = 463192 Test 015 control_2dwrtdecomp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/control -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/control_2threads +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/control +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/control_2threads Checking test 016 control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -893,14 +897,14 @@ Checking test 016 control_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 133.196133 -[0] The maximum resident set size (KB) = 522432 +[0] The total amount of wall time = 132.712582 +[0] The maximum resident set size (KB) = 515596 Test 016 control_2threads PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/control -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/control_restart +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/control +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/control_restart Checking test 017 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -939,14 +943,14 @@ Checking test 017 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 77.422671 -[0] The maximum resident set size (KB) = 210028 +[0] The total amount of wall time = 75.363059 +[0] The maximum resident set size (KB) = 208480 Test 017 control_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/control -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/control_fhzero +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/control +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/control_fhzero Checking test 018 control_fhzero results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -989,14 +993,14 @@ Checking test 018 control_fhzero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 141.038200 -[0] The maximum resident set size (KB) = 471108 +[0] The total amount of wall time = 135.194423 +[0] The maximum resident set size (KB) = 463764 Test 018 control_fhzero PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/control_CubedSphereGrid -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/control_CubedSphereGrid +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/control_CubedSphereGrid +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/control_CubedSphereGrid Checking test 019 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1023,14 +1027,14 @@ Checking test 019 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -[0] The total amount of wall time = 137.664042 -[0] The maximum resident set size (KB) = 466204 +[0] The total amount of wall time = 142.663744 +[0] The maximum resident set size (KB) = 462868 Test 019 control_CubedSphereGrid PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/control_latlon -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/control_latlon +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/control_latlon +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/control_latlon Checking test 020 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1041,16 +1045,16 @@ Checking test 020 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 139.245603 -[0] The maximum resident set size (KB) = 467868 +[0] The total amount of wall time = 147.675789 +[0] The maximum resident set size (KB) = 459996 Test 020 control_latlon PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/control_wrtGauss_netcdf_parallel -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/control_wrtGauss_netcdf_parallel +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/control_wrtGauss_netcdf_parallel +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/control_wrtGauss_netcdf_parallel Checking test 021 control_wrtGauss_netcdf_parallel results .... - Comparing sfcf000.nc .........OK + Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK @@ -1059,14 +1063,14 @@ Checking test 021 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 144.441946 -[0] The maximum resident set size (KB) = 471684 +[0] The total amount of wall time = 146.406801 +[0] The maximum resident set size (KB) = 467152 Test 021 control_wrtGauss_netcdf_parallel PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/control_c48 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/control_c48 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/control_c48 +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/control_c48 Checking test 022 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1105,14 +1109,14 @@ Checking test 022 control_c48 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 437.732881 -[0] The maximum resident set size (KB) = 656888 +[0] The total amount of wall time = 446.043778 +[0] The maximum resident set size (KB) = 659040 Test 022 control_c48 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/control_c192 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/control_c192 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/control_c192 +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/control_c192 Checking test 023 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1123,14 +1127,14 @@ Checking test 023 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 563.402463 -[0] The maximum resident set size (KB) = 564216 +[0] The total amount of wall time = 560.549788 +[0] The maximum resident set size (KB) = 560224 Test 023 control_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/control_c384 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/control_c384 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/control_c384 +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/control_c384 Checking test 024 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1141,14 +1145,14 @@ Checking test 024 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -[0] The total amount of wall time = 1040.570998 -[0] The maximum resident set size (KB) = 817812 +[0] The total amount of wall time = 1042.052034 +[0] The maximum resident set size (KB) = 819316 Test 024 control_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/control_c384gdas -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/control_c384gdas +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/control_c384gdas +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/control_c384gdas Checking test 025 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1191,14 +1195,14 @@ Checking test 025 control_c384gdas results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 904.292242 -[0] The maximum resident set size (KB) = 967340 +[0] The total amount of wall time = 921.098428 +[0] The maximum resident set size (KB) = 966484 Test 025 control_c384gdas PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/control_stochy -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/control_stochy +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/control_stochy +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/control_stochy Checking test 026 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1209,28 +1213,28 @@ Checking test 026 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -[0] The total amount of wall time = 94.208617 -[0] The maximum resident set size (KB) = 473344 +[0] The total amount of wall time = 96.568710 +[0] The maximum resident set size (KB) = 465808 Test 026 control_stochy PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/control_stochy -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/control_stochy_restart +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/control_stochy +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/control_stochy_restart Checking test 027 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 = 50.230350 -[0] The maximum resident set size (KB) = 270788 +[0] The total amount of wall time = 51.424029 +[0] The maximum resident set size (KB) = 261596 Test 027 control_stochy_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/control_lndp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/control_lndp +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/control_lndp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/control_lndp Checking test 028 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1241,14 +1245,14 @@ Checking test 028 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -[0] The total amount of wall time = 84.878754 -[0] The maximum resident set size (KB) = 465744 +[0] The total amount of wall time = 86.218227 +[0] The maximum resident set size (KB) = 463952 Test 028 control_lndp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/control_iovr4 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/control_iovr4 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/control_iovr4 +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/control_iovr4 Checking test 029 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1263,14 +1267,14 @@ Checking test 029 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 147.426753 -[0] The maximum resident set size (KB) = 467032 +[0] The total amount of wall time = 147.731211 +[0] The maximum resident set size (KB) = 459816 Test 029 control_iovr4 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/control_iovr5 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/control_iovr5 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/control_iovr5 +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/control_iovr5 Checking test 030 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1285,14 +1289,14 @@ Checking test 030 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 146.744317 -[0] The maximum resident set size (KB) = 469388 +[0] The total amount of wall time = 148.657867 +[0] The maximum resident set size (KB) = 463976 Test 030 control_iovr5 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/control_p8 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/control_p8 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/control_p8 +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/control_p8 Checking test 031 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1339,14 +1343,14 @@ Checking test 031 control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 211.485028 -[0] The maximum resident set size (KB) = 962816 +[0] The total amount of wall time = 221.807812 +[0] The maximum resident set size (KB) = 963852 Test 031 control_p8 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/control_p8_lndp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/control_p8_lndp +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/control_p8_lndp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/control_p8_lndp Checking test 032 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1365,14 +1369,14 @@ Checking test 032 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -[0] The total amount of wall time = 401.238838 -[0] The maximum resident set size (KB) = 966648 +[0] The total amount of wall time = 427.689323 +[0] The maximum resident set size (KB) = 961020 Test 032 control_p8_lndp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/control_p8 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/control_restart_p8 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/control_p8 +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/control_restart_p8 Checking test 033 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1411,14 +1415,14 @@ Checking test 033 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 = 112.069705 -[0] The maximum resident set size (KB) = 757828 +[0] The total amount of wall time = 115.969528 +[0] The maximum resident set size (KB) = 756292 Test 033 control_restart_p8 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/control_p8 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/control_decomp_p8 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/control_p8 +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/control_decomp_p8 Checking test 034 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1461,14 +1465,14 @@ Checking test 034 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 = 217.455250 -[0] The maximum resident set size (KB) = 959672 +[0] The total amount of wall time = 226.650395 +[0] The maximum resident set size (KB) = 956352 Test 034 control_decomp_p8 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/control_p8 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/control_2threads_p8 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/control_p8 +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/control_2threads_p8 Checking test 035 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1511,14 +1515,14 @@ Checking test 035 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 = 204.768402 -[0] The maximum resident set size (KB) = 1099316 +[0] The total amount of wall time = 210.421310 +[0] The maximum resident set size (KB) = 1097172 Test 035 control_2threads_p8 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/fv3_regional_control -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/regional_control +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/fv3_regional_control +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/regional_control Checking test 036 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1529,42 +1533,42 @@ Checking test 036 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -[0] The total amount of wall time = 351.326535 -[0] The maximum resident set size (KB) = 579548 +[0] The total amount of wall time = 373.018233 +[0] The maximum resident set size (KB) = 577344 Test 036 regional_control PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/fv3_regional_control -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/regional_restart +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/fv3_regional_control +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/regional_restart Checking test 037 regional_restart results .... Comparing dynf024.nc .........OK Comparing phyf024.nc .........OK Comparing PRSLEV.GrbF24 .........OK Comparing NATLEV.GrbF24 .........OK -[0] The total amount of wall time = 192.628411 -[0] The maximum resident set size (KB) = 581368 +[0] The total amount of wall time = 203.100696 +[0] The maximum resident set size (KB) = 579600 Test 037 regional_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/fv3_regional_control -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/regional_control_2dwrtdecomp +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/fv3_regional_control +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/regional_control_2dwrtdecomp Checking test 038 regional_control_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK -[0] The total amount of wall time = 356.489767 -[0] The maximum resident set size (KB) = 580384 +[0] The total amount of wall time = 371.341714 +[0] The maximum resident set size (KB) = 580364 Test 038 regional_control_2dwrtdecomp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/fv3_regional_noquilt -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/regional_noquilt +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/fv3_regional_noquilt +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/regional_noquilt Checking test 039 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1572,14 +1576,14 @@ Checking test 039 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 = 377.940815 -[0] The maximum resident set size (KB) = 609832 +[0] The total amount of wall time = 395.437390 +[0] The maximum resident set size (KB) = 609364 Test 039 regional_noquilt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/fv3_regional_control -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/regional_2threads +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/fv3_regional_control +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/regional_2threads Checking test 040 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1590,28 +1594,28 @@ Checking test 040 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -[0] The total amount of wall time = 209.219652 -[0] The maximum resident set size (KB) = 580184 +[0] The total amount of wall time = 220.680622 +[0] The maximum resident set size (KB) = 575752 Test 040 regional_2threads PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/fv3_regional_netcdf_parallel -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/regional_netcdf_parallel +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/fv3_regional_netcdf_parallel +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/regional_netcdf_parallel Checking test 041 regional_netcdf_parallel results .... - Comparing dynf000.nc .........OK + Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf024.nc .........OK - Comparing phyf000.nc .........OK + Comparing phyf000.nc ............ALT CHECK......OK Comparing phyf024.nc ............ALT CHECK......OK -[0] The total amount of wall time = 354.760847 -[0] The maximum resident set size (KB) = 578040 +[0] The total amount of wall time = 368.793531 +[0] The maximum resident set size (KB) = 574292 Test 041 regional_netcdf_parallel PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/fv3_regional_RRTMGP -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/regional_RRTMGP +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/fv3_regional_RRTMGP +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/regional_RRTMGP Checking test 042 regional_RRTMGP results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1622,14 +1626,14 @@ Checking test 042 regional_RRTMGP results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -[0] The total amount of wall time = 464.777343 -[0] The maximum resident set size (KB) = 696788 +[0] The total amount of wall time = 482.560437 +[0] The maximum resident set size (KB) = 692540 Test 042 regional_RRTMGP PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/fv3_regional_3km -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/regional_3km +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/fv3_regional_3km +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/regional_3km Checking test 043 regional_3km results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1640,14 +1644,14 @@ Checking test 043 regional_3km results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -[0] The total amount of wall time = 285.889890 -[0] The maximum resident set size (KB) = 608188 +[0] The total amount of wall time = 294.657050 +[0] The maximum resident set size (KB) = 607964 Test 043 regional_3km PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/rap_control -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/rap_control +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/rap_control +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/rap_control Checking test 044 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1694,14 +1698,14 @@ Checking test 044 rap_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 405.402347 -[0] The maximum resident set size (KB) = 835232 +[0] The total amount of wall time = 463.790854 +[0] The maximum resident set size (KB) = 832280 Test 044 rap_control PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/rap_rrtmgp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/rap_rrtmgp +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/rap_rrtmgp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/rap_rrtmgp Checking test 045 rap_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1748,14 +1752,14 @@ Checking test 045 rap_rrtmgp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 447.946411 -[0] The maximum resident set size (KB) = 952216 +[0] The total amount of wall time = 507.070749 +[0] The maximum resident set size (KB) = 949968 Test 045 rap_rrtmgp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/regional_spp_sppt_shum_skeb -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/regional_spp_sppt_shum_skeb +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/regional_spp_sppt_shum_skeb +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/regional_spp_sppt_shum_skeb Checking test 046 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -1766,14 +1770,14 @@ Checking test 046 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -[0] The total amount of wall time = 254.082484 -[0] The maximum resident set size (KB) = 927292 +[0] The total amount of wall time = 261.878871 +[0] The maximum resident set size (KB) = 929480 Test 046 regional_spp_sppt_shum_skeb PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/rap_control -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/rap_2threads +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/rap_control +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/rap_2threads Checking test 047 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1820,14 +1824,14 @@ Checking test 047 rap_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 377.757165 -[0] The maximum resident set size (KB) = 901468 +[0] The total amount of wall time = 430.344433 +[0] The maximum resident set size (KB) = 901280 Test 047 rap_2threads PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/rap_control -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/rap_restart +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/rap_control +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/rap_restart Checking test 048 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1866,14 +1870,14 @@ Checking test 048 rap_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 211.655514 -[0] The maximum resident set size (KB) = 590904 +[0] The total amount of wall time = 234.732640 +[0] The maximum resident set size (KB) = 586444 Test 048 rap_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/rap_sfcdiff -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/rap_sfcdiff +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/rap_sfcdiff +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/rap_sfcdiff Checking test 049 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1920,14 +1924,14 @@ Checking test 049 rap_sfcdiff results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 421.258784 -[0] The maximum resident set size (KB) = 835748 +[0] The total amount of wall time = 457.906671 +[0] The maximum resident set size (KB) = 832544 Test 049 rap_sfcdiff PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/rap_sfcdiff -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/rap_sfcdiff_restart +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/rap_sfcdiff +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/rap_sfcdiff_restart Checking test 050 rap_sfcdiff_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1966,14 +1970,14 @@ Checking test 050 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 = 207.896064 -[0] The maximum resident set size (KB) = 592096 +[0] The total amount of wall time = 231.549948 +[0] The maximum resident set size (KB) = 590800 Test 050 rap_sfcdiff_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/hrrr_control -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/hrrr_control +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/hrrr_control +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/hrrr_control Checking test 051 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2020,14 +2024,14 @@ Checking test 051 hrrr_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 394.649942 -[0] The maximum resident set size (KB) = 835828 +[0] The total amount of wall time = 440.841694 +[0] The maximum resident set size (KB) = 836104 Test 051 hrrr_control PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/rrfs_v1beta -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/rrfs_v1beta +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/rrfs_v1beta +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/rrfs_v1beta Checking test 052 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2074,14 +2078,14 @@ Checking test 052 rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 412.439898 -[0] The maximum resident set size (KB) = 832184 +[0] The total amount of wall time = 443.651978 +[0] The maximum resident set size (KB) = 830336 Test 052 rrfs_v1beta PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/rrfs_v1nssl -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/rrfs_v1nssl +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/rrfs_v1nssl +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/rrfs_v1nssl Checking test 053 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2096,14 +2100,14 @@ Checking test 053 rrfs_v1nssl results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 500.294318 -[0] The maximum resident set size (KB) = 523108 +[0] The total amount of wall time = 526.229538 +[0] The maximum resident set size (KB) = 526276 Test 053 rrfs_v1nssl PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/rrfs_v1nssl_nohailnoccn -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/rrfs_v1nssl_nohailnoccn +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/rrfs_v1nssl_nohailnoccn +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/rrfs_v1nssl_nohailnoccn Checking test 054 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2118,14 +2122,14 @@ Checking test 054 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 485.826223 -[0] The maximum resident set size (KB) = 514536 +[0] The total amount of wall time = 524.652849 +[0] The maximum resident set size (KB) = 518756 Test 054 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/rrfs_conus13km_hrrr_warm -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/rrfs_conus13km_hrrr_warm +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/rrfs_conus13km_hrrr_warm +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/rrfs_conus13km_hrrr_warm Checking test 055 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2134,14 +2138,14 @@ Checking test 055 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -[0] The total amount of wall time = 190.456859 -[0] The maximum resident set size (KB) = 664560 +[0] The total amount of wall time = 197.457240 +[0] The maximum resident set size (KB) = 662800 Test 055 rrfs_conus13km_hrrr_warm PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/rrfs_conus13km_radar_tten_warm -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/rrfs_conus13km_radar_tten_warm +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/rrfs_conus13km_radar_tten_warm +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/rrfs_conus13km_radar_tten_warm Checking test 056 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2150,14 +2154,14 @@ Checking test 056 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -[0] The total amount of wall time = 187.639413 -[0] The maximum resident set size (KB) = 664836 +[0] The total amount of wall time = 203.298425 +[0] The maximum resident set size (KB) = 664240 Test 056 rrfs_conus13km_radar_tten_warm PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/control_rrtmgp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/control_rrtmgp +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/control_rrtmgp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/control_rrtmgp Checking test 057 control_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2168,14 +2172,14 @@ Checking test 057 control_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 228.485859 -[0] The maximum resident set size (KB) = 601896 +[0] The total amount of wall time = 227.801545 +[0] The maximum resident set size (KB) = 597832 Test 057 control_rrtmgp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/control_rrtmgp_c192 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/control_rrtmgp_c192 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/control_rrtmgp_c192 +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/control_rrtmgp_c192 Checking test 058 control_rrtmgp_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2186,14 +2190,14 @@ Checking test 058 control_rrtmgp_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -[0] The total amount of wall time = 604.314979 -[0] The maximum resident set size (KB) = 803544 +[0] The total amount of wall time = 608.472086 +[0] The maximum resident set size (KB) = 796564 Test 058 control_rrtmgp_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/control_csawmg -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/control_csawmg +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/control_csawmg +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/control_csawmg Checking test 059 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2204,14 +2208,14 @@ Checking test 059 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 370.700492 -[0] The maximum resident set size (KB) = 529324 +[0] The total amount of wall time = 375.453747 +[0] The maximum resident set size (KB) = 524724 Test 059 control_csawmg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/control_csawmgt -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/control_csawmgt +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/control_csawmgt +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/control_csawmgt Checking test 060 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2222,14 +2226,14 @@ Checking test 060 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 373.696158 -[0] The maximum resident set size (KB) = 530360 +[0] The total amount of wall time = 377.950144 +[0] The maximum resident set size (KB) = 524604 Test 060 control_csawmgt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/control_flake -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/control_flake +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/control_flake +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/control_flake Checking test 061 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2240,14 +2244,14 @@ Checking test 061 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 260.948045 -[0] The maximum resident set size (KB) = 538640 +[0] The total amount of wall time = 260.877706 +[0] The maximum resident set size (KB) = 533636 Test 061 control_flake PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/control_ras -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/control_ras +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/control_ras +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/control_ras Checking test 062 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2258,14 +2262,14 @@ Checking test 062 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 194.536758 -[0] The maximum resident set size (KB) = 496740 +[0] The total amount of wall time = 201.837589 +[0] The maximum resident set size (KB) = 494964 Test 062 control_ras PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/control_thompson -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/control_thompson +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/control_thompson +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/control_thompson Checking test 063 control_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2276,14 +2280,14 @@ Checking test 063 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 244.000858 -[0] The maximum resident set size (KB) = 852532 +[0] The total amount of wall time = 259.644240 +[0] The maximum resident set size (KB) = 850704 Test 063 control_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/control_thompson_no_aero -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/control_thompson_no_aero +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/control_thompson_no_aero +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/control_thompson_no_aero Checking test 064 control_thompson_no_aero results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2294,54 +2298,54 @@ Checking test 064 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 236.899108 -[0] The maximum resident set size (KB) = 845060 +[0] The total amount of wall time = 242.984326 +[0] The maximum resident set size (KB) = 840140 Test 064 control_thompson_no_aero PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/control_wam_repro -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/control_wam_repro +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/control_wam +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/control_wam Checking test 065 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -[0] The total amount of wall time = 136.777684 -[0] The maximum resident set size (KB) = 228588 +[0] The total amount of wall time = 121.288672 +[0] The maximum resident set size (KB) = 226176 Test 065 control_wam PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/control_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/control_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/control_debug +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/control_debug Checking test 066 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 = 167.595379 -[0] The maximum resident set size (KB) = 631508 +[0] The total amount of wall time = 167.318656 +[0] The maximum resident set size (KB) = 628176 Test 066 control_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/control_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/control_2threads_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/control_debug +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/control_2threads_debug Checking test 067 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 = 155.965945 -[0] The maximum resident set size (KB) = 684560 +[0] The total amount of wall time = 156.776067 +[0] The maximum resident set size (KB) = 677236 Test 067 control_2threads_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/control_CubedSphereGrid_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/control_CubedSphereGrid_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/control_CubedSphereGrid_debug +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/control_CubedSphereGrid_debug Checking test 068 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2368,394 +2372,429 @@ Checking test 068 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -[0] The total amount of wall time = 181.380450 -[0] The maximum resident set size (KB) = 630204 +[0] The total amount of wall time = 180.919381 +[0] The maximum resident set size (KB) = 630256 Test 068 control_CubedSphereGrid_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/control_wrtGauss_netcdf_parallel_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/control_wrtGauss_netcdf_parallel_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/control_wrtGauss_netcdf_parallel_debug +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/control_wrtGauss_netcdf_parallel_debug Checking test 069 control_wrtGauss_netcdf_parallel_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc .........OK + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc ............ALT CHECK......OK -[0] The total amount of wall time = 170.062191 -[0] The maximum resident set size (KB) = 629332 +[0] The total amount of wall time = 170.901357 +[0] The maximum resident set size (KB) = 630392 Test 069 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/control_stochy_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/control_stochy_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/control_stochy_debug +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/control_stochy_debug Checking test 070 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 = 192.712661 -[0] The maximum resident set size (KB) = 632552 +[0] The total amount of wall time = 191.202454 +[0] The maximum resident set size (KB) = 633844 Test 070 control_stochy_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/control_lndp_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/control_lndp_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/control_lndp_debug +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/control_lndp_debug Checking test 071 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 = 172.828851 -[0] The maximum resident set size (KB) = 636332 +[0] The total amount of wall time = 171.802069 +[0] The maximum resident set size (KB) = 636140 Test 071 control_lndp_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/control_rrtmgp_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/control_rrtmgp_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/control_rrtmgp_debug +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/control_rrtmgp_debug Checking test 072 control_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 = 184.884718 -[0] The maximum resident set size (KB) = 744000 +[0] The total amount of wall time = 184.595937 +[0] The maximum resident set size (KB) = 745432 Test 072 control_rrtmgp_debug PASS -Test 073 control_csawmg_debug FAIL + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/control_csawmg_debug +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/control_csawmg_debug +Checking test 073 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 = 269.252336 +[0] The maximum resident set size (KB) = 660088 + +Test 073 control_csawmg_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/control_csawmgt_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/control_csawmgt_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/control_csawmgt_debug +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/control_csawmgt_debug Checking test 074 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 = 265.415216 -[0] The maximum resident set size (KB) = 664896 +[0] The total amount of wall time = 264.117658 +[0] The maximum resident set size (KB) = 661060 Test 074 control_csawmgt_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/control_ras_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/control_ras_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/control_ras_debug +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/control_ras_debug Checking test 075 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 = 175.164151 -[0] The maximum resident set size (KB) = 643952 +[0] The total amount of wall time = 173.879078 +[0] The maximum resident set size (KB) = 646832 Test 075 control_ras_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/control_diag_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/control_diag_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/control_diag_debug +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/control_diag_debug Checking test 076 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 = 178.311293 -[0] The maximum resident set size (KB) = 686616 +[0] The total amount of wall time = 176.279636 +[0] The maximum resident set size (KB) = 685156 Test 076 control_diag_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/control_debug_p8 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/control_debug_p8 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/control_debug_p8 +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/control_debug_p8 Checking test 077 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 = 204.464162 -[0] The maximum resident set size (KB) = 1124728 +[0] The total amount of wall time = 204.129011 +[0] The maximum resident set size (KB) = 1122844 Test 077 control_debug_p8 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/control_thompson_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/control_thompson_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/control_thompson_debug +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/control_thompson_debug Checking test 078 control_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 = 197.088805 -[0] The maximum resident set size (KB) = 992252 +[0] The total amount of wall time = 196.908796 +[0] The maximum resident set size (KB) = 985400 Test 078 control_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/control_thompson_no_aero_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/control_thompson_no_aero_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/control_thompson_no_aero_debug +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/control_thompson_no_aero_debug Checking test 079 control_thompson_no_aero_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 = 189.406825 -[0] The maximum resident set size (KB) = 985340 +[0] The total amount of wall time = 189.917816 +[0] The maximum resident set size (KB) = 988084 Test 079 control_thompson_no_aero_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/control_thompson_debug_extdiag -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/control_thompson_extdiag_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/control_thompson_debug_extdiag +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/control_thompson_extdiag_debug Checking test 080 control_thompson_extdiag_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 = 206.805502 -[0] The maximum resident set size (KB) = 1019940 +[0] The total amount of wall time = 206.684246 +[0] The maximum resident set size (KB) = 1017816 Test 080 control_thompson_extdiag_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/control_thompson_progcld_thompson_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/control_thompson_progcld_thompson_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/control_thompson_progcld_thompson_debug +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/control_thompson_progcld_thompson_debug Checking test 081 control_thompson_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 = 196.832735 -[0] The maximum resident set size (KB) = 994552 +[0] The total amount of wall time = 197.054465 +[0] The maximum resident set size (KB) = 987924 Test 081 control_thompson_progcld_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/fv3_regional_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/regional_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/fv3_regional_debug +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/regional_debug Checking test 082 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 = 281.601012 -[0] The maximum resident set size (KB) = 607812 +[0] The total amount of wall time = 281.903577 +[0] The maximum resident set size (KB) = 604440 Test 082 regional_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/rap_control_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/rap_control_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/rap_control_debug +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/rap_control_debug Checking test 083 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 = 306.090828 -[0] The maximum resident set size (KB) = 1000544 +[0] The total amount of wall time = 306.171573 +[0] The maximum resident set size (KB) = 995664 Test 083 rap_control_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/rap_control_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/rap_unified_drag_suite_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/rap_control_debug +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/rap_unified_drag_suite_debug Checking test 084 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 = 305.399280 -[0] The maximum resident set size (KB) = 1000472 +[0] The total amount of wall time = 305.223643 +[0] The maximum resident set size (KB) = 998296 Test 084 rap_unified_drag_suite_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/rap_diag_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/rap_diag_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/rap_diag_debug +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/rap_diag_debug Checking test 085 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 = 320.365246 -[0] The maximum resident set size (KB) = 1083332 +[0] The total amount of wall time = 320.750506 +[0] The maximum resident set size (KB) = 1081972 Test 085 rap_diag_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/rap_cires_ugwp_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/rap_cires_ugwp_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/rap_cires_ugwp_debug +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/rap_cires_ugwp_debug Checking test 086 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 = 312.102803 -[0] The maximum resident set size (KB) = 998556 +[0] The total amount of wall time = 312.282818 +[0] The maximum resident set size (KB) = 998900 Test 086 rap_cires_ugwp_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/rap_cires_ugwp_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/rap_unified_ugwp_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/rap_cires_ugwp_debug +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/rap_unified_ugwp_debug Checking test 087 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 = 311.994757 -[0] The maximum resident set size (KB) = 996808 +[0] The total amount of wall time = 311.573597 +[0] The maximum resident set size (KB) = 998244 Test 087 rap_unified_ugwp_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/rap_lndp_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/rap_lndp_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/rap_lndp_debug +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/rap_lndp_debug Checking test 088 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 = 309.273606 -[0] The maximum resident set size (KB) = 999884 +[0] The total amount of wall time = 307.771670 +[0] The maximum resident set size (KB) = 1001564 Test 088 rap_lndp_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/rap_flake_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/rap_flake_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/rap_flake_debug +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/rap_flake_debug Checking test 089 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 = 306.286628 -[0] The maximum resident set size (KB) = 995740 +[0] The total amount of wall time = 304.790452 +[0] The maximum resident set size (KB) = 996564 -Test 089 rap_flake_debug PASS +Test 089 rap_flake_debug PASS Tries: 3 -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/rap_progcld_thompson_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/rap_progcld_thompson_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/rap_progcld_thompson_debug +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/rap_progcld_thompson_debug Checking test 090 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 = 305.348828 -[0] The maximum resident set size (KB) = 1000748 +[0] The total amount of wall time = 305.257118 +[0] The maximum resident set size (KB) = 1001404 Test 090 rap_progcld_thompson_debug PASS -Test 091 rap_noah_debug FAIL +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/rap_noah_debug +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/rap_noah_debug +Checking test 091 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 = 301.079790 +[0] The maximum resident set size (KB) = 996716 + +Test 091 rap_noah_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/rap_rrtmgp_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/rap_rrtmgp_debug + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/rap_rrtmgp_debug +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/rap_rrtmgp_debug Checking test 092 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 = 518.594318 -[0] The maximum resident set size (KB) = 1115140 +[0] The total amount of wall time = 519.057925 +[0] The maximum resident set size (KB) = 1111404 Test 092 rap_rrtmgp_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/rap_sfcdiff_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/rap_sfcdiff_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/rap_sfcdiff_debug +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/rap_sfcdiff_debug Checking test 093 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 = 305.269239 -[0] The maximum resident set size (KB) = 993684 +[0] The total amount of wall time = 304.007633 +[0] The maximum resident set size (KB) = 993232 -Test 093 rap_sfcdiff_debug PASS +Test 093 rap_sfcdiff_debug PASS Tries: 2 -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/rap_noah_sfcdiff_cires_ugwp_debug Checking test 094 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 = 508.701326 -[0] The maximum resident set size (KB) = 997872 +[0] The total amount of wall time = 508.978528 +[0] The maximum resident set size (KB) = 994416 Test 094 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/rrfs_v1beta_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/rrfs_v1beta_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/rrfs_v1beta_debug +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/rrfs_v1beta_debug Checking test 095 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 = 303.407384 -[0] The maximum resident set size (KB) = 997968 +[0] The total amount of wall time = 303.930876 +[0] The maximum resident set size (KB) = 992592 Test 095 rrfs_v1beta_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/control_wam_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/control_wam_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/control_wam_debug +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/control_wam_debug Checking test 096 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -[0] The total amount of wall time = 321.680314 -[0] The maximum resident set size (KB) = 255832 +[0] The total amount of wall time = 321.273407 +[0] The maximum resident set size (KB) = 257052 Test 096 control_wam_debug PASS -Test 097 hafs_regional_atm FAIL +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/hafs_regional_atm +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/hafs_regional_atm +Checking test 097 hafs_regional_atm results .... + Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK + Comparing HURPRS.GrbF06 .........OK + +[0] The total amount of wall time = 246.168021 +[0] The maximum resident set size (KB) = 708856 + +Test 097 hafs_regional_atm PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/hafs_regional_atm_thompson_gfdlsf -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/hafs_regional_atm_thompson_gfdlsf + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/hafs_regional_atm_thompson_gfdlsf +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/hafs_regional_atm_thompson_gfdlsf Checking test 098 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -[0] The total amount of wall time = 307.708259 -[0] The maximum resident set size (KB) = 1059556 +[0] The total amount of wall time = 342.046993 +[0] The maximum resident set size (KB) = 1067356 Test 098 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/hafs_regional_atm_ocn -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/hafs_regional_atm_ocn +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/hafs_regional_atm_ocn +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/hafs_regional_atm_ocn Checking test 099 hafs_regional_atm_ocn results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc .........OK @@ -2764,88 +2803,88 @@ Checking test 099 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 = 384.901248 -[0] The maximum resident set size (KB) = 717340 +[0] The total amount of wall time = 386.650363 +[0] The maximum resident set size (KB) = 718376 Test 099 hafs_regional_atm_ocn PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/hafs_regional_atm_wav -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/hafs_regional_atm_wav +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/hafs_regional_atm_wav +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/hafs_regional_atm_wav Checking test 100 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK -[0] The total amount of wall time = 980.706862 -[0] The maximum resident set size (KB) = 712672 +[0] The total amount of wall time = 911.011397 +[0] The maximum resident set size (KB) = 719312 Test 100 hafs_regional_atm_wav PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/hafs_regional_atm_ocn_wav -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/hafs_regional_atm_ocn_wav +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/hafs_regional_atm_ocn_wav +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/hafs_regional_atm_ocn_wav Checking test 101 hafs_regional_atm_ocn_wav results .... - Comparing atmf006.nc ............ALT CHECK......OK + Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK Comparing archs.2019_241_06.a .........OK Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK -[0] The total amount of wall time = 1105.903098 -[0] The maximum resident set size (KB) = 717696 +[0] The total amount of wall time = 1035.306504 +[0] The maximum resident set size (KB) = 715356 Test 101 hafs_regional_atm_ocn_wav PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/hafs_regional_1nest_atm -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/hafs_regional_1nest_atm +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/hafs_regional_1nest_atm +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/hafs_regional_1nest_atm Checking test 102 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc ............ALT CHECK......OK Comparing sfc.nest02.f006.nc ............ALT CHECK......OK -[0] The total amount of wall time = 406.208130 -[0] The maximum resident set size (KB) = 316060 +[0] The total amount of wall time = 409.425921 +[0] The maximum resident set size (KB) = 320416 Test 102 hafs_regional_1nest_atm PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/hafs_regional_telescopic_2nests_atm -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/hafs_regional_telescopic_2nests_atm +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/hafs_regional_telescopic_2nests_atm +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/hafs_regional_telescopic_2nests_atm Checking test 103 hafs_regional_telescopic_2nests_atm results .... - Comparing atmf006.nc .........OK + Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK + Comparing atm.nest02.f006.nc ............ALT CHECK......OK Comparing sfc.nest02.f006.nc .........OK Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc ............ALT CHECK......OK -[0] The total amount of wall time = 414.864033 -[0] The maximum resident set size (KB) = 329348 +[0] The total amount of wall time = 420.820636 +[0] The maximum resident set size (KB) = 327296 Test 103 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/hafs_global_1nest_atm -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/hafs_global_1nest_atm +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/hafs_global_1nest_atm +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/hafs_global_1nest_atm Checking test 104 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc ............ALT CHECK......OK Comparing sfc.nest02.f006.nc ............ALT CHECK......OK -[0] The total amount of wall time = 190.837303 -[0] The maximum resident set size (KB) = 207492 +[0] The total amount of wall time = 183.281284 +[0] The maximum resident set size (KB) = 204348 Test 104 hafs_global_1nest_atm PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/hafs_global_multiple_4nests_atm -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/hafs_global_multiple_4nests_atm +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/hafs_global_multiple_4nests_atm +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/hafs_global_multiple_4nests_atm Checking test 105 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc .........OK @@ -2856,60 +2895,60 @@ Checking test 105 hafs_global_multiple_4nests_atm results .... Comparing sfc.nest04.f006.nc .........OK Comparing sfc.nest04.f006.nc .........OK Comparing atm.nest05.f006.nc .........OK - Comparing sfc.nest05.f006.nc ............ALT CHECK......OK + Comparing sfc.nest05.f006.nc .........OK -[0] The total amount of wall time = 556.304057 -[0] The maximum resident set size (KB) = 284092 +[0] The total amount of wall time = 565.973447 +[0] The maximum resident set size (KB) = 275424 Test 105 hafs_global_multiple_4nests_atm PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/hafs_regional_specified_moving_1nest_atm -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/hafs_regional_specified_moving_1nest_atm +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/hafs_regional_specified_moving_1nest_atm +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/hafs_regional_specified_moving_1nest_atm Checking test 106 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc ............ALT CHECK......OK Comparing sfc.nest02.f006.nc ............ALT CHECK......OK -[0] The total amount of wall time = 260.293058 -[0] The maximum resident set size (KB) = 319684 +[0] The total amount of wall time = 246.783177 +[0] The maximum resident set size (KB) = 325376 Test 106 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/hafs_regional_storm_following_1nest_atm -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/hafs_regional_storm_following_1nest_atm +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/hafs_regional_storm_following_1nest_atm +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/hafs_regional_storm_following_1nest_atm Checking test 107 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc ............ALT CHECK......OK Comparing sfc.nest02.f006.nc ............ALT CHECK......OK -[0] The total amount of wall time = 237.585679 -[0] The maximum resident set size (KB) = 323400 +[0] The total amount of wall time = 230.934397 +[0] The maximum resident set size (KB) = 320740 Test 107 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/hafs_regional_storm_following_1nest_atm_ocn -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/hafs_regional_storm_following_1nest_atm_ocn +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/hafs_regional_storm_following_1nest_atm_ocn +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/hafs_regional_storm_following_1nest_atm_ocn Checking test 108 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK + Comparing atm.nest02.f006.nc ............ALT CHECK......OK Comparing sfc.nest02.f006.nc ............ALT CHECK......OK Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -[0] The total amount of wall time = 271.550048 -[0] The maximum resident set size (KB) = 323848 +[0] The total amount of wall time = 265.227517 +[0] The maximum resident set size (KB) = 326152 Test 108 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/hafs_regional_storm_following_1nest_atm_ocn_wav +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 109 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -2920,28 +2959,28 @@ Checking test 109 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 = 715.322463 -[0] The maximum resident set size (KB) = 327116 +[0] The total amount of wall time = 679.489324 +[0] The maximum resident set size (KB) = 324760 Test 109 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/hafs_global_storm_following_1nest_atm -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/hafs_global_storm_following_1nest_atm +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/hafs_global_storm_following_1nest_atm +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/hafs_global_storm_following_1nest_atm Checking test 110 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK + Comparing atm.nest02.f006.nc ............ALT CHECK......OK Comparing sfc.nest02.f006.nc ............ALT CHECK......OK -[0] The total amount of wall time = 80.902364 -[0] The maximum resident set size (KB) = 221936 +[0] The total amount of wall time = 82.343981 +[0] The maximum resident set size (KB) = 220168 Test 110 hafs_global_storm_following_1nest_atm PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/hafs_regional_docn -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/hafs_regional_docn +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/hafs_regional_docn +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/hafs_regional_docn Checking test 111 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -2949,14 +2988,14 @@ Checking test 111 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 = 384.799711 -[0] The maximum resident set size (KB) = 714356 +[0] The total amount of wall time = 378.362174 +[0] The maximum resident set size (KB) = 722452 Test 111 hafs_regional_docn PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/hafs_regional_docn_oisst -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/hafs_regional_docn_oisst +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/hafs_regional_docn_oisst +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/hafs_regional_docn_oisst Checking test 112 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -2964,118 +3003,118 @@ Checking test 112 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 = 383.575089 -[0] The maximum resident set size (KB) = 712192 +[0] The total amount of wall time = 376.546732 +[0] The maximum resident set size (KB) = 720564 Test 112 hafs_regional_docn_oisst PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/hafs_regional_datm_cdeps -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/hafs_regional_datm_cdeps +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/hafs_regional_datm_cdeps +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/hafs_regional_datm_cdeps Checking test 113 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 = 1105.969431 -[0] The maximum resident set size (KB) = 889280 +[0] The total amount of wall time = 1101.742881 +[0] The maximum resident set size (KB) = 888328 Test 113 hafs_regional_datm_cdeps PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/datm_cdeps_control_cfsr -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/datm_cdeps_control_cfsr +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/datm_cdeps_control_cfsr +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/datm_cdeps_control_cfsr Checking test 114 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.912886 -[0] The maximum resident set size (KB) = 722448 +[0] The total amount of wall time = 175.226508 +[0] The maximum resident set size (KB) = 724900 Test 114 datm_cdeps_control_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/datm_cdeps_control_cfsr -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/datm_cdeps_restart_cfsr +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/datm_cdeps_control_cfsr +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/datm_cdeps_restart_cfsr Checking test 115 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 = 119.391531 -[0] The maximum resident set size (KB) = 723824 +[0] The total amount of wall time = 118.064637 +[0] The maximum resident set size (KB) = 723712 Test 115 datm_cdeps_restart_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/datm_cdeps_control_gefs -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/datm_cdeps_control_gefs +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/datm_cdeps_control_gefs +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/datm_cdeps_control_gefs Checking test 116 datm_cdeps_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -[0] The total amount of wall time = 170.628374 -[0] The maximum resident set size (KB) = 625704 +[0] The total amount of wall time = 171.426447 +[0] The maximum resident set size (KB) = 626780 Test 116 datm_cdeps_control_gefs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/datm_cdeps_iau_gefs -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/datm_cdeps_iau_gefs +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/datm_cdeps_iau_gefs +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/datm_cdeps_iau_gefs Checking test 117 datm_cdeps_iau_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -[0] The total amount of wall time = 176.396046 -[0] The maximum resident set size (KB) = 627656 +[0] The total amount of wall time = 171.285435 +[0] The maximum resident set size (KB) = 624956 Test 117 datm_cdeps_iau_gefs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/datm_cdeps_stochy_gefs -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/datm_cdeps_stochy_gefs +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/datm_cdeps_stochy_gefs +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/datm_cdeps_stochy_gefs Checking test 118 datm_cdeps_stochy_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -[0] The total amount of wall time = 173.969727 -[0] The maximum resident set size (KB) = 627436 +[0] The total amount of wall time = 170.330651 +[0] The maximum resident set size (KB) = 626176 Test 118 datm_cdeps_stochy_gefs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/datm_cdeps_bulk_cfsr -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/datm_cdeps_bulk_cfsr +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/datm_cdeps_bulk_cfsr +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/datm_cdeps_bulk_cfsr Checking test 119 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 = 186.003525 -[0] The maximum resident set size (KB) = 726084 +[0] The total amount of wall time = 175.944364 +[0] The maximum resident set size (KB) = 725248 Test 119 datm_cdeps_bulk_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/datm_cdeps_bulk_gefs -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/datm_cdeps_bulk_gefs +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/datm_cdeps_bulk_gefs +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/datm_cdeps_bulk_gefs Checking test 120 datm_cdeps_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -[0] The total amount of wall time = 177.098023 -[0] The maximum resident set size (KB) = 626144 +[0] The total amount of wall time = 169.456151 +[0] The maximum resident set size (KB) = 628932 Test 120 datm_cdeps_bulk_gefs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/datm_cdeps_mx025_cfsr -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/datm_cdeps_mx025_cfsr +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/datm_cdeps_mx025_cfsr +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/datm_cdeps_mx025_cfsr Checking test 121 datm_cdeps_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -3084,14 +3123,14 @@ Checking test 121 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 = 369.080541 -[0] The maximum resident set size (KB) = 547128 +[0] The total amount of wall time = 347.457228 +[0] The maximum resident set size (KB) = 549024 Test 121 datm_cdeps_mx025_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/datm_cdeps_mx025_gefs -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/datm_cdeps_mx025_gefs +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/datm_cdeps_mx025_gefs +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/datm_cdeps_mx025_gefs Checking test 122 datm_cdeps_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -3100,64 +3139,64 @@ Checking test 122 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-01-43200.nc .........OK -[0] The total amount of wall time = 363.988269 -[0] The maximum resident set size (KB) = 520764 +[0] The total amount of wall time = 341.162332 +[0] The maximum resident set size (KB) = 521792 Test 122 datm_cdeps_mx025_gefs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/datm_cdeps_control_cfsr -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/datm_cdeps_multiple_files_cfsr +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/datm_cdeps_control_cfsr +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/datm_cdeps_multiple_files_cfsr Checking test 123 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 = 178.248790 -[0] The maximum resident set size (KB) = 725968 +[0] The total amount of wall time = 173.212768 +[0] The maximum resident set size (KB) = 724452 Test 123 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/datm_cdeps_3072x1536_cfsr -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/datm_cdeps_3072x1536_cfsr +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/datm_cdeps_3072x1536_cfsr +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/datm_cdeps_3072x1536_cfsr Checking test 124 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 = 253.645877 -[0] The maximum resident set size (KB) = 1899100 +[0] The total amount of wall time = 253.141237 +[0] The maximum resident set size (KB) = 1837692 Test 124 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/datm_cdeps_gfs -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/datm_cdeps_gfs +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/datm_cdeps_gfs +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/datm_cdeps_gfs Checking test 125 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 = 259.100526 -[0] The maximum resident set size (KB) = 1896848 +[0] The total amount of wall time = 253.260838 +[0] The maximum resident set size (KB) = 1834948 Test 125 datm_cdeps_gfs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/datm_cdeps_debug_cfsr -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/datm_cdeps_debug_cfsr +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/datm_cdeps_debug_cfsr +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/datm_cdeps_debug_cfsr Checking test 126 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 = 505.342507 -[0] The maximum resident set size (KB) = 733276 +[0] The total amount of wall time = 501.675837 +[0] The maximum resident set size (KB) = 729820 Test 126 datm_cdeps_debug_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/control_atmwav -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/control_atmwav +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/control_atmwav +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/control_atmwav Checking test 127 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -3201,14 +3240,14 @@ Checking test 127 control_atmwav results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK -[0] The total amount of wall time = 93.571150 -[0] The maximum resident set size (KB) = 473712 +[0] The total amount of wall time = 94.971378 +[0] The maximum resident set size (KB) = 469868 Test 127 control_atmwav PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/control_c384gdas_wav -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/control_c384gdas_wav +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/control_c384gdas_wav +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/control_c384gdas_wav Checking test 128 control_c384gdas_wav results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -3254,14 +3293,14 @@ Checking test 128 control_c384gdas_wav results .... Comparing 20210322.030000.restart.gnh_10m .........OK Comparing 20210322.030000.restart.gsh_15m .........OK -[0] The total amount of wall time = 620.408702 -[0] The maximum resident set size (KB) = 986868 +[0] The total amount of wall time = 623.246722 +[0] The maximum resident set size (KB) = 984740 Test 128 control_c384gdas_wav PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/control_atm_aerosols -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_19107/control_atm_aerosols +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220502/control_atm_aerosols +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_19030/control_atm_aerosols Checking test 129 control_atm_aerosols results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3308,67 +3347,12 @@ Checking test 129 control_atm_aerosols results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 333.126696 -[0] The maximum resident set size (KB) = 878644 +[0] The total amount of wall time = 335.795443 +[0] The maximum resident set size (KB) = 878916 Test 129 control_atm_aerosols PASS -FAILED TESTS: -Test control_csawmg_debug 073 failed in run_test failed -Test rap_noah_debug 091 failed in run_test failed -Test hafs_regional_atm 097 failed in run_test failed - -REGRESSION TEST FAILED -Fri Apr 29 18:55:07 UTC 2022 -Elapsed time: 01h:48m:47s. Have a nice day! -Fri Apr 29 18:59:11 UTC 2022 -Start Regression test - -Compile 001 elapsed time 482 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp,FV3_GFS_v16_thompson,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 002 elapsed time 375 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP_noah,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 003 elapsed time 1494 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 - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/control_csawmg_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_13408/control_csawmg_debug -Checking test 001 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 = 270.401378 -[0] The maximum resident set size (KB) = 661536 - -Test 001 control_csawmg_debug PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/rap_noah_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_13408/rap_noah_debug -Checking test 002 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 = 301.367435 -[0] The maximum resident set size (KB) = 1000664 - -Test 002 rap_noah_debug PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220425/hafs_regional_atm -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_13408/hafs_regional_atm -Checking test 003 hafs_regional_atm results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing HURPRS.GrbF06 .........OK - -[0] The total amount of wall time = 230.882402 -[0] The maximum resident set size (KB) = 707208 - -Test 003 hafs_regional_atm PASS - REGRESSION TEST WAS SUCCESSFUL -Fri Apr 29 19:31:10 UTC 2022 -Elapsed time: 00h:32m:01s. Have a nice day! +Mon May 2 20:08:43 UTC 2022 +Elapsed time: 02h:15m:33s. Have a nice day! diff --git a/tests/compile.sh b/tests/compile.sh index 201c943a97..42ad38deb8 100755 --- a/tests/compile.sh +++ b/tests/compile.sh @@ -91,8 +91,6 @@ CMAKE_FLAGS+=" -DMPI=ON" if [[ "${MAKE_OPT}" == *"-DDEBUG=ON"* ]]; then CMAKE_FLAGS+=" -DCMAKE_BUILD_TYPE=Debug" -elif [[ "${MAKE_OPT}" == *"-DREPRO=ON"* ]]; then - CMAKE_FLAGS+=" -DCMAKE_BUILD_TYPE=Bitforbit" else CMAKE_FLAGS+=" -DCMAKE_BUILD_TYPE=Release" if [[ "${MACHINE_ID}" == "jet.intel" ]]; then diff --git a/tests/rt.conf b/tests/rt.conf index f72ca334fa..6b0c763983 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -99,7 +99,7 @@ RUN | control_thompson RUN | control_thompson_no_aero | - wcoss_cray | fv3 | # Run WAM test in REPRO mode to avoid numerical instability in the deep atmosphere -COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DREPRO=ON | | fv3 | +COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON | | fv3 | RUN | control_wam | | fv3 | ################################################################################################################################################################################### diff --git a/tests/rt.sh b/tests/rt.sh index 2c846564d0..b69337d3ac 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -485,7 +485,7 @@ if [[ $TESTS_FILE =~ '35d' ]] || [[ $TESTS_FILE =~ 'weekly' ]]; then TEST_35D=true fi -BL_DATE=20220425 +BL_DATE=20220502 if [[ $MACHINE_ID = hera.* ]] || [[ $MACHINE_ID = orion.* ]] || [[ $MACHINE_ID = cheyenne.* ]] || [[ $MACHINE_ID = gaea.* ]] || [[ $MACHINE_ID = jet.* ]] || [[ $MACHINE_ID = s4.* ]]; then RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-${BL_DATE}/${RT_COMPILER^^}} else @@ -730,15 +730,8 @@ EOF ./run_compile.sh ${PATHRT} ${RUNDIR_ROOT} "${MAKE_OPT}" ${COMPILE_NR} > ${LOG_DIR}/compile_${COMPILE_NR}.log 2>&1 fi - # Set RT_SUFFIX (regression test run directories and log files) and BL_SUFFIX - # (regression test baseline directories) for REPRO or PROD runs - if [[ ${MAKE_OPT^^} =~ "-DREPRO=ON" ]]; then - RT_SUFFIX="_repro" - BL_SUFFIX="_repro" - else - RT_SUFFIX="" - BL_SUFFIX="" - fi + RT_SUFFIX="" + BL_SUFFIX="" continue diff --git a/tests/tests/cpld_control_c192_p8 b/tests/tests/cpld_control_c192_p8 index 2117c599b1..f638a09f63 100644 --- a/tests/tests/cpld_control_c192_p8 +++ b/tests/tests/cpld_control_c192_p8 @@ -125,7 +125,7 @@ export FNSLPC="'C192.slope_type.tileX.nc'" export FNABSC="'C192.maximum_snow_albedo.tileX.nc'" export CDMBWD=${CDMBWD_c192} -export DT_INNER=${DT_INNER_c384} +export DT_INNER=${DT_INNER_c192} export CPLWAV=.false. export CPLWAV2ATM=.false. diff --git a/tests/tests/cpld_restart_c192_p8 b/tests/tests/cpld_restart_c192_p8 index 26e8060672..106e9642df 100644 --- a/tests/tests/cpld_restart_c192_p8 +++ b/tests/tests/cpld_restart_c192_p8 @@ -129,7 +129,7 @@ export FNSLPC="'C192.slope_type.tileX.nc'" export FNABSC="'C192.maximum_snow_albedo.tileX.nc'" export CDMBWD=${CDMBWD_c192} -export DT_INNER=${DT_INNER_c384} +export DT_INNER=${DT_INNER_c192} # ATM warm start export WARM_START=.true.