diff --git a/AQM b/AQM index 572f3cc272..37cbb7d684 160000 --- a/AQM +++ b/AQM @@ -1 +1 @@ -Subproject commit 572f3cc2727916d8805aae162b656566874bb88a +Subproject commit 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 diff --git a/CMakeLists.txt b/CMakeLists.txt index 48dbbf9a7f..ea8664a18a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -83,6 +83,28 @@ if(CMAKE_Platform) endif() endif() +option(BUILD_WITH_IFI "Build NCEPpost with In-Flight Icing (IFI) library if present" OFF) +option(REQUIRE_IFI "Abort if libIFI is not found ; enables BUILD_WITH_IFI=ON" OFF) +option(INTERNAL_IFI "Compile with IFI inside the executable, instead of a library" OFF) + +if(INTERNAL_IFI) + message("Building with libIFI inside executable. Do not distribute executable outside of WCOSS2.") + set(BUILD_WITH_IFI OFF) + set(REQUIRE_IFI OFF) +endif() + +if(REQUIRE_IFI) + set(BUILD_WITH_IFI ON) +endif() + +if(BUILD_WITH_IFI) + if(REQUIRE_IFI) + find_package(IFI CONFIG REQUIRED) + else() + find_package(IFI CONFIG) + endif() +endif() + message("") message("32BIT ............ ${32BIT}") message("CCPP_32BIT ....... ${CCPP_32BIT}") @@ -316,6 +338,7 @@ target_link_libraries(ufs PUBLIC "${_ufs_libs_public}") add_executable(ufs_model driver/UFS.F90) add_dependencies(ufs_model ufs) target_link_libraries(ufs_model ufs esmf w3emc::w3emc_d) +set_target_properties(ufs_model PROPERTIES LINKER_LANGUAGE Fortran) ############################################################################### ### Install diff --git a/FV3 b/FV3 index 66c6ff19cf..11c3168059 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 66c6ff19cf6ab72fc2293f8ca2391231e451b680 +Subproject commit 11c31680597bcf25c243d50f457c7f5de1586a32 diff --git a/modulefiles/ufs_acorn.intel.lua b/modulefiles/ufs_acorn.intel.lua index 8432bb9462..b1ab064d25 100644 --- a/modulefiles/ufs_acorn.intel.lua +++ b/modulefiles/ufs_acorn.intel.lua @@ -28,6 +28,9 @@ load(pathJoin("hpc-cray-mpich", hpc_cray_mpich_ver)) load("ufs_common") +prepend_path("MODULEPATH", "/lfs/h1/emc/nceplibs/noscrub/UPP_IFI/modulefiles") +load("ifi/20230118-intel-19.1.3.304") + setenv("CC", "cc") setenv("CXX", "CC") setenv("FC", "ftn") diff --git a/modulefiles/ufs_acorn.intel_debug.lua b/modulefiles/ufs_acorn.intel_debug.lua index b9ba3794ba..c2c24709d9 100644 --- a/modulefiles/ufs_acorn.intel_debug.lua +++ b/modulefiles/ufs_acorn.intel_debug.lua @@ -28,6 +28,9 @@ load(pathJoin("hpc-cray-mpich", hpc_cray_mpich_ver)) load("ufs_common_debug") +prepend_path("MODULEPATH", "/lfs/h1/emc/nceplibs/noscrub/UPP_IFI/modulefiles") +load("ifi/20230118-intel-19.1.3.304") + setenv("CC", "cc") setenv("CXX", "CC") setenv("FC", "ftn") diff --git a/modulefiles/ufs_hera.intel.lua b/modulefiles/ufs_hera.intel.lua index 5209333988..2bc3722598 100644 --- a/modulefiles/ufs_hera.intel.lua +++ b/modulefiles/ufs_hera.intel.lua @@ -36,4 +36,7 @@ setenv("CXX", "mpiicpc") setenv("FC", "mpiifort") setenv("CMAKE_Platform", "hera.intel") +prepend_path("MODULEPATH", "/scratch2/BMC/ifi/modulefiles") +try_load("ifi/20230118-intel-2022.1.2") + whatis("Description: UFS build environment") diff --git a/modulefiles/ufs_hera.intel_debug.lua b/modulefiles/ufs_hera.intel_debug.lua index 4c50ac2cab..cc4ae9e983 100644 --- a/modulefiles/ufs_hera.intel_debug.lua +++ b/modulefiles/ufs_hera.intel_debug.lua @@ -36,4 +36,7 @@ setenv("CXX", "mpiicpc") setenv("FC", "mpiifort") setenv("CMAKE_Platform", "hera.intel") +prepend_path("MODULEPATH", "/scratch2/BMC/ifi/modulefiles") +try_load("ifi/20230118-intel-2022.1.2") + whatis("Description: UFS build environment") diff --git a/modulefiles/ufs_jet.intel.lua b/modulefiles/ufs_jet.intel.lua index c2d048bd2d..6ca3c691bc 100644 --- a/modulefiles/ufs_jet.intel.lua +++ b/modulefiles/ufs_jet.intel.lua @@ -31,4 +31,7 @@ setenv("CXX", "mpiicpc") setenv("FC", "mpiifort") setenv("CMAKE_Platform", "jet.intel") +prepend_path("MODULEPATH", "/lfs4/BMC/ifi/modulefiles") +try_load("ifi/20230118-intel-2022.1.2") + whatis("Description: UFS build environment") diff --git a/modulefiles/ufs_jet.intel_debug.lua b/modulefiles/ufs_jet.intel_debug.lua index 8fd81d58f8..4b07640c79 100644 --- a/modulefiles/ufs_jet.intel_debug.lua +++ b/modulefiles/ufs_jet.intel_debug.lua @@ -31,4 +31,7 @@ setenv("CXX", "mpiicpc") setenv("FC", "mpiifort") setenv("CMAKE_Platform", "jet.intel") +prepend_path("MODULEPATH", "/lfs4/BMC/ifi/modulefiles") +try_load("ifi/20230118-intel-2022.1.2") + whatis("Description: UFS build environment") diff --git a/tests/RegressionTests_cheyenne.gnu.log b/tests/RegressionTests_cheyenne.gnu.log index eb0ae122d1..63eda42b46 100644 --- a/tests/RegressionTests_cheyenne.gnu.log +++ b/tests/RegressionTests_cheyenne.gnu.log @@ -1,21 +1,21 @@ -Wed Apr 5 11:01:14 MDT 2023 +Tue Apr 11 12:05:38 MDT 2023 Start Regression test -Compile 001 elapsed time 394 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 002 elapsed time 408 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 003 elapsed time 884 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 004 elapsed time 209 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 005 elapsed time 371 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 1102 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 007 elapsed time 869 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 882 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 653 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 010 elapsed time 584 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 011 elapsed time 381 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 012 elapsed time 313 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/GNU/control_c48 -working dir = /glade/scratch/dswales/FV3_RT/rt_37244/control_c48 +Compile 001 elapsed time 382 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 002 elapsed time 410 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 003 elapsed time 869 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 004 elapsed time 204 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 005 elapsed time 374 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 1093 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 873 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 869 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 644 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 010 elapsed time 575 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 011 elapsed time 374 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 012 elapsed time 307 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230410/GNU/control_c48 +working dir = /glade/scratch/dswales/FV3_RT/rt_50937/control_c48 Checking test 001 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -54,14 +54,14 @@ Checking test 001 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 819.141152 -0:The maximum resident set size (KB) = 681216 +0:The total amount of wall time = 818.436201 +0:The maximum resident set size (KB) = 675712 Test 001 control_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/GNU/control_stochy -working dir = /glade/scratch/dswales/FV3_RT/rt_37244/control_stochy +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230410/GNU/control_stochy +working dir = /glade/scratch/dswales/FV3_RT/rt_50937/control_stochy Checking test 002 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -72,14 +72,14 @@ Checking test 002 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 179.186751 -0:The maximum resident set size (KB) = 442604 +0:The total amount of wall time = 177.458531 +0:The maximum resident set size (KB) = 442784 Test 002 control_stochy PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/GNU/control_ras -working dir = /glade/scratch/dswales/FV3_RT/rt_37244/control_ras +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230410/GNU/control_ras +working dir = /glade/scratch/dswales/FV3_RT/rt_50937/control_ras Checking test 003 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -90,14 +90,14 @@ Checking test 003 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 297.796182 -0:The maximum resident set size (KB) = 452096 +0:The total amount of wall time = 293.572193 +0:The maximum resident set size (KB) = 451976 Test 003 control_ras PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/GNU/control_p8 -working dir = /glade/scratch/dswales/FV3_RT/rt_37244/control_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230410/GNU/control_p8 +working dir = /glade/scratch/dswales/FV3_RT/rt_50937/control_p8 Checking test 004 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -144,14 +144,14 @@ Checking test 004 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 309.882962 -0:The maximum resident set size (KB) = 1225708 +0:The total amount of wall time = 301.940614 +0:The maximum resident set size (KB) = 1225812 Test 004 control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/GNU/rap_control -working dir = /glade/scratch/dswales/FV3_RT/rt_37244/rap_control +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230410/GNU/rap_control +working dir = /glade/scratch/dswales/FV3_RT/rt_50937/rap_control Checking test 005 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -198,14 +198,14 @@ Checking test 005 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 715.918915 -0:The maximum resident set size (KB) = 791776 +0:The total amount of wall time = 720.009688 +0:The maximum resident set size (KB) = 791916 Test 005 rap_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/GNU/rap_control -working dir = /glade/scratch/dswales/FV3_RT/rt_37244/rap_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230410/GNU/rap_control +working dir = /glade/scratch/dswales/FV3_RT/rt_50937/rap_decomp Checking test 006 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -252,14 +252,14 @@ Checking test 006 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 729.634141 -0:The maximum resident set size (KB) = 791284 +0:The total amount of wall time = 726.984407 +0:The maximum resident set size (KB) = 791152 Test 006 rap_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/GNU/rap_control -working dir = /glade/scratch/dswales/FV3_RT/rt_37244/rap_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230410/GNU/rap_control +working dir = /glade/scratch/dswales/FV3_RT/rt_50937/rap_2threads Checking test 007 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -306,14 +306,14 @@ Checking test 007 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 668.502326 -0:The maximum resident set size (KB) = 864120 +0:The total amount of wall time = 669.661547 +0:The maximum resident set size (KB) = 864088 Test 007 rap_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/GNU/rap_control -working dir = /glade/scratch/dswales/FV3_RT/rt_37244/rap_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230410/GNU/rap_control +working dir = /glade/scratch/dswales/FV3_RT/rt_50937/rap_restart Checking test 008 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -352,14 +352,14 @@ Checking test 008 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 356.705414 -0:The maximum resident set size (KB) = 539688 +0:The total amount of wall time = 359.032802 +0:The maximum resident set size (KB) = 538772 Test 008 rap_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/GNU/rap_sfcdiff -working dir = /glade/scratch/dswales/FV3_RT/rt_37244/rap_sfcdiff +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230410/GNU/rap_sfcdiff +working dir = /glade/scratch/dswales/FV3_RT/rt_50937/rap_sfcdiff Checking test 009 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -406,14 +406,14 @@ Checking test 009 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 714.193631 -0:The maximum resident set size (KB) = 791696 +0:The total amount of wall time = 710.193083 +0:The maximum resident set size (KB) = 791676 Test 009 rap_sfcdiff PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/GNU/rap_sfcdiff -working dir = /glade/scratch/dswales/FV3_RT/rt_37244/rap_sfcdiff_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230410/GNU/rap_sfcdiff +working dir = /glade/scratch/dswales/FV3_RT/rt_50937/rap_sfcdiff_decomp Checking test 010 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -460,14 +460,14 @@ Checking test 010 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 725.130493 +0:The total amount of wall time = 722.392342 0:The maximum resident set size (KB) = 791048 Test 010 rap_sfcdiff_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/GNU/rap_sfcdiff -working dir = /glade/scratch/dswales/FV3_RT/rt_37244/rap_sfcdiff_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230410/GNU/rap_sfcdiff +working dir = /glade/scratch/dswales/FV3_RT/rt_50937/rap_sfcdiff_restart Checking test 011 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -506,14 +506,14 @@ Checking test 011 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 531.613486 -0:The maximum resident set size (KB) = 543968 +0:The total amount of wall time = 532.673157 +0:The maximum resident set size (KB) = 544052 Test 011 rap_sfcdiff_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/GNU/hrrr_control -working dir = /glade/scratch/dswales/FV3_RT/rt_37244/hrrr_control +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230410/GNU/hrrr_control +working dir = /glade/scratch/dswales/FV3_RT/rt_50937/hrrr_control Checking test 012 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -560,14 +560,14 @@ Checking test 012 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 688.993509 -0:The maximum resident set size (KB) = 789276 +0:The total amount of wall time = 688.662499 +0:The maximum resident set size (KB) = 789320 Test 012 hrrr_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/GNU/hrrr_control -working dir = /glade/scratch/dswales/FV3_RT/rt_37244/hrrr_control_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230410/GNU/hrrr_control +working dir = /glade/scratch/dswales/FV3_RT/rt_50937/hrrr_control_2threads Checking test 013 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -614,14 +614,14 @@ Checking test 013 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 624.450494 -0:The maximum resident set size (KB) = 858860 +0:The total amount of wall time = 625.684901 +0:The maximum resident set size (KB) = 858928 Test 013 hrrr_control_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/GNU/hrrr_control -working dir = /glade/scratch/dswales/FV3_RT/rt_37244/hrrr_control_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230410/GNU/hrrr_control +working dir = /glade/scratch/dswales/FV3_RT/rt_50937/hrrr_control_decomp Checking test 014 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -668,14 +668,14 @@ Checking test 014 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 686.601385 -0:The maximum resident set size (KB) = 788676 +0:The total amount of wall time = 683.826862 +0:The maximum resident set size (KB) = 788632 Test 014 hrrr_control_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/GNU/hrrr_control -working dir = /glade/scratch/dswales/FV3_RT/rt_37244/hrrr_control_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230410/GNU/hrrr_control +working dir = /glade/scratch/dswales/FV3_RT/rt_50937/hrrr_control_restart Checking test 015 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -714,14 +714,14 @@ Checking test 015 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 511.880593 -0:The maximum resident set size (KB) = 540032 +0:The total amount of wall time = 516.046784 +0:The maximum resident set size (KB) = 540592 Test 015 hrrr_control_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/GNU/rrfs_v1beta -working dir = /glade/scratch/dswales/FV3_RT/rt_37244/rrfs_v1beta +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230410/GNU/rrfs_v1beta +working dir = /glade/scratch/dswales/FV3_RT/rt_50937/rrfs_v1beta Checking test 016 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -768,14 +768,14 @@ Checking test 016 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 700.519584 -0:The maximum resident set size (KB) = 788664 +0:The total amount of wall time = 694.967563 +0:The maximum resident set size (KB) = 788680 Test 016 rrfs_v1beta PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/GNU/rrfs_conus13km_hrrr_warm -working dir = /glade/scratch/dswales/FV3_RT/rt_37244/rrfs_conus13km_hrrr_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230410/GNU/rrfs_conus13km_hrrr_warm +working dir = /glade/scratch/dswales/FV3_RT/rt_50937/rrfs_conus13km_hrrr_warm Checking test 017 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -784,14 +784,14 @@ Checking test 017 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 203.992251 -0:The maximum resident set size (KB) = 606820 +0:The total amount of wall time = 202.514081 +0:The maximum resident set size (KB) = 607184 Test 017 rrfs_conus13km_hrrr_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/dswales/FV3_RT/rt_37244/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230410/GNU/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/dswales/FV3_RT/rt_50937/rrfs_smoke_conus13km_hrrr_warm Checking test 018 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -800,14 +800,14 @@ Checking test 018 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 220.842095 -0:The maximum resident set size (KB) = 620912 +0:The total amount of wall time = 222.186825 +0:The maximum resident set size (KB) = 621308 Test 018 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/GNU/rrfs_conus13km_radar_tten_warm -working dir = /glade/scratch/dswales/FV3_RT/rt_37244/rrfs_conus13km_radar_tten_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230410/GNU/rrfs_conus13km_radar_tten_warm +working dir = /glade/scratch/dswales/FV3_RT/rt_50937/rrfs_conus13km_radar_tten_warm Checking test 019 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -816,14 +816,14 @@ Checking test 019 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 203.899655 -0:The maximum resident set size (KB) = 609960 +0:The total amount of wall time = 204.955610 +0:The maximum resident set size (KB) = 610008 Test 019 rrfs_conus13km_radar_tten_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/GNU/rrfs_conus13km_radar_tten_warm -working dir = /glade/scratch/dswales/FV3_RT/rt_37244/rrfs_conus13km_radar_tten_warm_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230410/GNU/rrfs_conus13km_radar_tten_warm +working dir = /glade/scratch/dswales/FV3_RT/rt_50937/rrfs_conus13km_radar_tten_warm_2threads Checking test 020 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -832,208 +832,208 @@ Checking test 020 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 130.605984 -0:The maximum resident set size (KB) = 629076 +0:The total amount of wall time = 130.226379 +0:The maximum resident set size (KB) = 628972 Test 020 rrfs_conus13km_radar_tten_warm_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/GNU/control_diag_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_37244/control_diag_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230410/GNU/control_diag_debug +working dir = /glade/scratch/dswales/FV3_RT/rt_50937/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 = 88.645900 -0:The maximum resident set size (KB) = 494956 +0:The total amount of wall time = 88.940371 +0:The maximum resident set size (KB) = 495004 Test 021 control_diag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/GNU/regional_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_37244/regional_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230410/GNU/regional_debug +working dir = /glade/scratch/dswales/FV3_RT/rt_50937/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 = 483.062399 -0:The maximum resident set size (KB) = 570352 +0:The total amount of wall time = 479.044118 +0:The maximum resident set size (KB) = 570256 Test 022 regional_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/GNU/rap_control_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_37244/rap_control_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230410/GNU/rap_control_debug +working dir = /glade/scratch/dswales/FV3_RT/rt_50937/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 = 150.475640 -0:The maximum resident set size (KB) = 808808 +0:The total amount of wall time = 151.787194 +0:The maximum resident set size (KB) = 808780 Test 023 rap_control_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/GNU/hrrr_control_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_37244/hrrr_control_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230410/GNU/hrrr_control_debug +working dir = /glade/scratch/dswales/FV3_RT/rt_50937/hrrr_control_debug Checking test 024 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 147.877959 -0:The maximum resident set size (KB) = 804756 +0:The total amount of wall time = 150.076209 +0:The maximum resident set size (KB) = 804732 Test 024 hrrr_control_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/GNU/rap_diag_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_37244/rap_diag_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230410/GNU/rap_diag_debug +working dir = /glade/scratch/dswales/FV3_RT/rt_50937/rap_diag_debug Checking test 025 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 = 158.613286 -0:The maximum resident set size (KB) = 891996 +0:The total amount of wall time = 159.465256 +0:The maximum resident set size (KB) = 891812 Test 025 rap_diag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/GNU/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_37244/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230410/GNU/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /glade/scratch/dswales/FV3_RT/rt_50937/rap_noah_sfcdiff_cires_ugwp_debug Checking test 026 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 = 239.215367 -0:The maximum resident set size (KB) = 807308 +0:The total amount of wall time = 240.451557 +0:The maximum resident set size (KB) = 807192 Test 026 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/GNU/rap_progcld_thompson_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_37244/rap_progcld_thompson_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230410/GNU/rap_progcld_thompson_debug +working dir = /glade/scratch/dswales/FV3_RT/rt_50937/rap_progcld_thompson_debug Checking test 027 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 = 152.120772 -0:The maximum resident set size (KB) = 808920 +0:The total amount of wall time = 152.240753 +0:The maximum resident set size (KB) = 808952 Test 027 rap_progcld_thompson_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/GNU/rrfs_v1beta_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_37244/rrfs_v1beta_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230410/GNU/rrfs_v1beta_debug +working dir = /glade/scratch/dswales/FV3_RT/rt_50937/rrfs_v1beta_debug Checking test 028 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 = 150.053380 -0:The maximum resident set size (KB) = 804208 +0:The total amount of wall time = 149.419701 +0:The maximum resident set size (KB) = 804088 Test 028 rrfs_v1beta_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/GNU/control_ras_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_37244/control_ras_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230410/GNU/control_ras_debug +working dir = /glade/scratch/dswales/FV3_RT/rt_50937/control_ras_debug Checking test 029 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 85.601608 -0:The maximum resident set size (KB) = 449488 +0:The total amount of wall time = 86.800727 +0:The maximum resident set size (KB) = 449376 Test 029 control_ras_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/GNU/control_stochy_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_37244/control_stochy_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230410/GNU/control_stochy_debug +working dir = /glade/scratch/dswales/FV3_RT/rt_50937/control_stochy_debug Checking test 030 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 = 93.410816 -0:The maximum resident set size (KB) = 441792 +0:The total amount of wall time = 93.469592 +0:The maximum resident set size (KB) = 441712 Test 030 control_stochy_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/GNU/control_debug_p8 -working dir = /glade/scratch/dswales/FV3_RT/rt_37244/control_debug_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230410/GNU/control_debug_p8 +working dir = /glade/scratch/dswales/FV3_RT/rt_50937/control_debug_p8 Checking test 031 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 95.825427 -0:The maximum resident set size (KB) = 1224932 +0:The total amount of wall time = 95.122239 +0:The maximum resident set size (KB) = 1224452 Test 031 control_debug_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/GNU/rrfs_conus13km_hrrr_warm_debugs -working dir = /glade/scratch/dswales/FV3_RT/rt_37244/rrfs_conus13km_hrrr_warm_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230410/GNU/rrfs_conus13km_hrrr_warm_debugs +working dir = /glade/scratch/dswales/FV3_RT/rt_50937/rrfs_conus13km_hrrr_warm_debug Checking test 032 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 391.493300 -0:The maximum resident set size (KB) = 613884 +0:The total amount of wall time = 387.831771 +0:The maximum resident set size (KB) = 614444 Test 032 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/GNU/rrfs_conus13km_radar_tten_warm_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_37244/rrfs_conus13km_radar_tten_warm_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230410/GNU/rrfs_conus13km_radar_tten_warm_debug +working dir = /glade/scratch/dswales/FV3_RT/rt_50937/rrfs_conus13km_radar_tten_warm_debug Checking test 033 rrfs_conus13km_radar_tten_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 392.171819 -0:The maximum resident set size (KB) = 616876 +0:The total amount of wall time = 388.783989 +0:The maximum resident set size (KB) = 617992 Test 033 rrfs_conus13km_radar_tten_warm_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/GNU/control_wam_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_37244/control_wam_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230410/GNU/control_wam_debug +working dir = /glade/scratch/dswales/FV3_RT/rt_50937/control_wam_debug Checking test 034 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -0:The total amount of wall time = 146.415451 -0:The maximum resident set size (KB) = 184780 +0:The total amount of wall time = 144.834286 +0:The maximum resident set size (KB) = 184888 Test 034 control_wam_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/dswales/FV3_RT/rt_37244/rap_control_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230410/GNU/rap_control_dyn32_phy32 +working dir = /glade/scratch/dswales/FV3_RT/rt_50937/rap_control_dyn32_phy32 Checking test 035 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1080,14 +1080,14 @@ Checking test 035 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 690.823724 -0:The maximum resident set size (KB) = 673260 +0:The total amount of wall time = 686.723038 +0:The maximum resident set size (KB) = 673188 Test 035 rap_control_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/dswales/FV3_RT/rt_37244/hrrr_control_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230410/GNU/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/dswales/FV3_RT/rt_50937/hrrr_control_dyn32_phy32 Checking test 036 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1134,14 +1134,14 @@ Checking test 036 hrrr_control_dyn32_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 352.033838 -0:The maximum resident set size (KB) = 671624 +0:The total amount of wall time = 350.758864 +0:The maximum resident set size (KB) = 671600 Test 036 hrrr_control_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/dswales/FV3_RT/rt_37244/rap_2threads_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230410/GNU/rap_control_dyn32_phy32 +working dir = /glade/scratch/dswales/FV3_RT/rt_50937/rap_2threads_dyn32_phy32 Checking test 037 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1188,14 +1188,14 @@ Checking test 037 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 628.997431 -0:The maximum resident set size (KB) = 719028 +0:The total amount of wall time = 626.842453 +0:The maximum resident set size (KB) = 718272 Test 037 rap_2threads_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/dswales/FV3_RT/rt_37244/hrrr_control_2threads_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230410/GNU/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/dswales/FV3_RT/rt_50937/hrrr_control_2threads_dyn32_phy32 Checking test 038 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1242,14 +1242,14 @@ Checking test 038 hrrr_control_2threads_dyn32_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 320.988357 -0:The maximum resident set size (KB) = 715648 +0:The total amount of wall time = 321.412704 +0:The maximum resident set size (KB) = 715604 Test 038 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/dswales/FV3_RT/rt_37244/hrrr_control_decomp_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230410/GNU/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/dswales/FV3_RT/rt_50937/hrrr_control_decomp_dyn32_phy32 Checking test 039 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1296,14 +1296,14 @@ Checking test 039 hrrr_control_decomp_dyn32_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 349.349105 -0:The maximum resident set size (KB) = 670536 +0:The total amount of wall time = 350.786381 +0:The maximum resident set size (KB) = 670532 Test 039 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/dswales/FV3_RT/rt_37244/rap_restart_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230410/GNU/rap_control_dyn32_phy32 +working dir = /glade/scratch/dswales/FV3_RT/rt_50937/rap_restart_dyn32_phy32 Checking test 040 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -1342,14 +1342,14 @@ Checking test 040 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 514.619881 -0:The maximum resident set size (KB) = 511360 +0:The total amount of wall time = 516.258974 +0:The maximum resident set size (KB) = 511292 Test 040 rap_restart_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/dswales/FV3_RT/rt_37244/hrrr_control_restart_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230410/GNU/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/dswales/FV3_RT/rt_50937/hrrr_control_restart_dyn32_phy32 Checking test 041 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -1388,14 +1388,14 @@ Checking test 041 hrrr_control_restart_dyn32_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 177.021801 -0:The maximum resident set size (KB) = 506916 +0:The total amount of wall time = 177.934532 +0:The maximum resident set size (KB) = 506980 Test 041 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/GNU/rap_control_dyn64_phy32 -working dir = /glade/scratch/dswales/FV3_RT/rt_37244/rap_control_dyn64_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230410/GNU/rap_control_dyn64_phy32 +working dir = /glade/scratch/dswales/FV3_RT/rt_50937/rap_control_dyn64_phy32 Checking test 042 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1442,56 +1442,56 @@ Checking test 042 rap_control_dyn64_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 409.648192 -0:The maximum resident set size (KB) = 694020 +0:The total amount of wall time = 414.009096 +0:The maximum resident set size (KB) = 693928 Test 042 rap_control_dyn64_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/GNU/rap_control_debug_dyn32_phy32 -working dir = /glade/scratch/dswales/FV3_RT/rt_37244/rap_control_debug_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230410/GNU/rap_control_debug_dyn32_phy32 +working dir = /glade/scratch/dswales/FV3_RT/rt_50937/rap_control_debug_dyn32_phy32 Checking test 043 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 150.030471 -0:The maximum resident set size (KB) = 690888 +0:The total amount of wall time = 149.433539 +0:The maximum resident set size (KB) = 691076 Test 043 rap_control_debug_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/GNU/hrrr_control_debug_dyn32_phy32 -working dir = /glade/scratch/dswales/FV3_RT/rt_37244/hrrr_control_debug_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230410/GNU/hrrr_control_debug_dyn32_phy32 +working dir = /glade/scratch/dswales/FV3_RT/rt_50937/hrrr_control_debug_dyn32_phy32 Checking test 044 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 150.366266 -0:The maximum resident set size (KB) = 687836 +0:The total amount of wall time = 146.312778 +0:The maximum resident set size (KB) = 687888 Test 044 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/GNU/rap_control_debug_dyn64_phy32 -working dir = /glade/scratch/dswales/FV3_RT/rt_37244/rap_control_dyn64_phy32_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230410/GNU/rap_control_debug_dyn64_phy32 +working dir = /glade/scratch/dswales/FV3_RT/rt_50937/rap_control_dyn64_phy32_debug Checking test 045 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 156.226587 -0:The maximum resident set size (KB) = 711328 +0:The total amount of wall time = 152.948359 +0:The maximum resident set size (KB) = 711324 -Test 045 rap_control_dyn64_phy32_debug PASS +Test 045 rap_control_dyn64_phy32_debug PASS Tries: 2 -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/GNU/cpld_control_p8 -working dir = /glade/scratch/dswales/FV3_RT/rt_37244/cpld_control_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230410/GNU/cpld_control_p8 +working dir = /glade/scratch/dswales/FV3_RT/rt_50937/cpld_control_p8 Checking test 046 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1556,14 +1556,14 @@ Checking test 046 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 500.180367 -0:The maximum resident set size (KB) = 3161580 +0:The total amount of wall time = 488.902995 +0:The maximum resident set size (KB) = 3159576 Test 046 cpld_control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/GNU/cpld_control_c96_noaero_p8 -working dir = /glade/scratch/dswales/FV3_RT/rt_37244/cpld_control_nowave_noaero_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230410/GNU/cpld_control_c96_noaero_p8 +working dir = /glade/scratch/dswales/FV3_RT/rt_50937/cpld_control_nowave_noaero_p8 Checking test 047 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1625,14 +1625,14 @@ Checking test 047 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 245.169738 -0:The maximum resident set size (KB) = 1239872 +0:The total amount of wall time = 244.313957 +0:The maximum resident set size (KB) = 1239932 Test 047 cpld_control_nowave_noaero_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/GNU/cpld_debug_p8 -working dir = /glade/scratch/dswales/FV3_RT/rt_37244/cpld_debug_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230410/GNU/cpld_debug_p8 +working dir = /glade/scratch/dswales/FV3_RT/rt_50937/cpld_debug_p8 Checking test 048 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1685,25 +1685,25 @@ Checking test 048 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 278.109284 -0:The maximum resident set size (KB) = 3178112 +0:The total amount of wall time = 276.817119 +0:The maximum resident set size (KB) = 3178272 Test 048 cpld_debug_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/GNU/datm_cdeps_control_cfsr -working dir = /glade/scratch/dswales/FV3_RT/rt_37244/datm_cdeps_control_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230410/GNU/datm_cdeps_control_cfsr +working dir = /glade/scratch/dswales/FV3_RT/rt_50937/datm_cdeps_control_cfsr Checking test 049 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 179.813052 -0:The maximum resident set size (KB) = 673576 +0:The total amount of wall time = 173.505509 +0:The maximum resident set size (KB) = 674252 Test 049 datm_cdeps_control_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Wed Apr 5 11:35:27 MDT 2023 -Elapsed time: 00h:34m:13s. Have a nice day! +Tue Apr 11 12:42:55 MDT 2023 +Elapsed time: 00h:37m:17s. Have a nice day! diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index a816a077d2..8f186cb31f 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,21 +1,21 @@ -Mon Apr 3 22:02:41 UTC 2023 +Mon Apr 10 18:48:35 UTC 2023 Start Regression test -Compile 001 elapsed time 190 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 002 elapsed time 183 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 003 elapsed time 313 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 004 elapsed time 100 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 005 elapsed time 182 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 389 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 007 elapsed time 316 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 001 elapsed time 179 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 002 elapsed time 192 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 003 elapsed time 321 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 004 elapsed time 99 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 195 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 391 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 325 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug Compile 008 elapsed time 320 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 257 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 010 elapsed time 230 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 011 elapsed time 147 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 012 elapsed time 124 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 009 elapsed time 262 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 010 elapsed time 225 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 011 elapsed time 156 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 012 elapsed time 113 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/GNU/control_c48 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8409/control_c48 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/GNU/control_c48 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_3672/control_c48 Checking test 001 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -54,14 +54,14 @@ Checking test 001 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 686.972471 -0: The maximum resident set size (KB) = 701008 +0: The total amount of wall time = 691.272918 +0: The maximum resident set size (KB) = 701744 Test 001 control_c48 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/GNU/control_stochy -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8409/control_stochy +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/GNU/control_stochy +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_3672/control_stochy Checking test 002 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -72,14 +72,14 @@ Checking test 002 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 647.435800 - 0: The maximum resident set size (KB) = 477808 + 0: The total amount of wall time = 658.206871 + 0: The maximum resident set size (KB) = 477008 Test 002 control_stochy PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/GNU/control_ras -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8409/control_ras +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/GNU/control_ras +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_3672/control_ras Checking test 003 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -90,14 +90,14 @@ Checking test 003 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 831.266939 - 0: The maximum resident set size (KB) = 484336 + 0: The total amount of wall time = 819.426616 + 0: The maximum resident set size (KB) = 484804 Test 003 control_ras PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/GNU/control_p8 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8409/control_p8 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/GNU/control_p8 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_3672/control_p8 Checking test 004 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -144,14 +144,14 @@ Checking test 004 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 898.496828 - 0: The maximum resident set size (KB) = 1234840 + 0: The total amount of wall time = 890.406014 + 0: The maximum resident set size (KB) = 1236096 Test 004 control_p8 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/GNU/rap_control -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8409/rap_control +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/GNU/rap_control +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_3672/rap_control Checking test 005 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -198,14 +198,14 @@ Checking test 005 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1551.253986 - 0: The maximum resident set size (KB) = 827972 + 0: The total amount of wall time = 1450.664948 + 0: The maximum resident set size (KB) = 824236 Test 005 rap_control PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/GNU/rap_control -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8409/rap_decomp +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/GNU/rap_control +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_3672/rap_decomp Checking test 006 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -252,14 +252,14 @@ Checking test 006 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1479.291798 - 0: The maximum resident set size (KB) = 829420 + 0: The total amount of wall time = 1421.824773 + 0: The maximum resident set size (KB) = 825928 Test 006 rap_decomp PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/GNU/rap_control -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8409/rap_2threads +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/GNU/rap_control +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_3672/rap_2threads Checking test 007 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -306,14 +306,14 @@ Checking test 007 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1361.957245 - 0: The maximum resident set size (KB) = 902052 + 0: The total amount of wall time = 1363.224216 + 0: The maximum resident set size (KB) = 895408 Test 007 rap_2threads PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/GNU/rap_control -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8409/rap_restart +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/GNU/rap_control +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_3672/rap_restart Checking test 008 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -352,14 +352,14 @@ Checking test 008 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 710.145108 - 0: The maximum resident set size (KB) = 545600 + 0: The total amount of wall time = 724.968860 + 0: The maximum resident set size (KB) = 548668 Test 008 rap_restart PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/GNU/rap_sfcdiff -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8409/rap_sfcdiff +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/GNU/rap_sfcdiff +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_3672/rap_sfcdiff Checking test 009 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -406,14 +406,14 @@ Checking test 009 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1468.236838 - 0: The maximum resident set size (KB) = 835392 + 0: The total amount of wall time = 1471.383040 + 0: The maximum resident set size (KB) = 831028 Test 009 rap_sfcdiff PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/GNU/rap_sfcdiff -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8409/rap_sfcdiff_decomp +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/GNU/rap_sfcdiff +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_3672/rap_sfcdiff_decomp Checking test 010 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -460,14 +460,14 @@ Checking test 010 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1445.580047 - 0: The maximum resident set size (KB) = 832844 + 0: The total amount of wall time = 1447.950373 + 0: The maximum resident set size (KB) = 824272 Test 010 rap_sfcdiff_decomp PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/GNU/rap_sfcdiff -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8409/rap_sfcdiff_restart +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/GNU/rap_sfcdiff +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_3672/rap_sfcdiff_restart Checking test 011 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -506,14 +506,14 @@ Checking test 011 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1093.956899 - 0: The maximum resident set size (KB) = 554364 + 0: The total amount of wall time = 1067.281317 + 0: The maximum resident set size (KB) = 550540 Test 011 rap_sfcdiff_restart PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/GNU/hrrr_control -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8409/hrrr_control +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/GNU/hrrr_control +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_3672/hrrr_control Checking test 012 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -560,14 +560,14 @@ Checking test 012 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1448.680377 - 0: The maximum resident set size (KB) = 824664 + 0: The total amount of wall time = 1410.378394 + 0: The maximum resident set size (KB) = 829120 Test 012 hrrr_control PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/GNU/hrrr_control -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8409/hrrr_control_2threads +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/GNU/hrrr_control +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_3672/hrrr_control_2threads Checking test 013 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -614,14 +614,14 @@ Checking test 013 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1400.052207 - 0: The maximum resident set size (KB) = 890452 + 0: The total amount of wall time = 1318.163565 + 0: The maximum resident set size (KB) = 889416 Test 013 hrrr_control_2threads PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/GNU/hrrr_control -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8409/hrrr_control_decomp +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/GNU/hrrr_control +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_3672/hrrr_control_decomp Checking test 014 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -668,14 +668,14 @@ Checking test 014 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1494.176092 - 0: The maximum resident set size (KB) = 826892 + 0: The total amount of wall time = 1396.587213 + 0: The maximum resident set size (KB) = 825388 Test 014 hrrr_control_decomp PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/GNU/hrrr_control -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8409/hrrr_control_restart +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/GNU/hrrr_control +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_3672/hrrr_control_restart Checking test 015 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -714,14 +714,14 @@ Checking test 015 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1057.000428 - 0: The maximum resident set size (KB) = 549212 + 0: The total amount of wall time = 1050.947800 + 0: The maximum resident set size (KB) = 551016 Test 015 hrrr_control_restart PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/GNU/rrfs_v1beta -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8409/rrfs_v1beta +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/GNU/rrfs_v1beta +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_3672/rrfs_v1beta Checking test 016 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -768,14 +768,14 @@ Checking test 016 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1527.318120 - 0: The maximum resident set size (KB) = 831128 + 0: The total amount of wall time = 1449.153621 + 0: The maximum resident set size (KB) = 827212 Test 016 rrfs_v1beta PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/GNU/rrfs_conus13km_hrrr_warm -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8409/rrfs_conus13km_hrrr_warm +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/GNU/rrfs_conus13km_hrrr_warm +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_3672/rrfs_conus13km_hrrr_warm Checking test 017 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -784,14 +784,14 @@ Checking test 017 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 806.910007 - 0: The maximum resident set size (KB) = 635368 + 0: The total amount of wall time = 763.518278 + 0: The maximum resident set size (KB) = 638604 Test 017 rrfs_conus13km_hrrr_warm PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8409/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/GNU/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_3672/rrfs_smoke_conus13km_hrrr_warm Checking test 018 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -800,14 +800,14 @@ Checking test 018 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 825.998876 - 0: The maximum resident set size (KB) = 652300 + 0: The total amount of wall time = 796.749818 + 0: The maximum resident set size (KB) = 648280 Test 018 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/GNU/rrfs_conus13km_radar_tten_warm -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8409/rrfs_conus13km_radar_tten_warm +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/GNU/rrfs_conus13km_radar_tten_warm +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_3672/rrfs_conus13km_radar_tten_warm Checking test 019 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -816,14 +816,14 @@ Checking test 019 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 830.847767 - 0: The maximum resident set size (KB) = 640928 + 0: The total amount of wall time = 792.010277 + 0: The maximum resident set size (KB) = 641316 Test 019 rrfs_conus13km_radar_tten_warm PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/GNU/rrfs_conus13km_radar_tten_warm -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8409/rrfs_conus13km_radar_tten_warm_2threads +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/GNU/rrfs_conus13km_radar_tten_warm +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_3672/rrfs_conus13km_radar_tten_warm_2threads Checking test 020 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -832,208 +832,208 @@ Checking test 020 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 885.679897 - 0: The maximum resident set size (KB) = 637744 + 0: The total amount of wall time = 932.875640 + 0: The maximum resident set size (KB) = 637864 Test 020 rrfs_conus13km_radar_tten_warm_2threads PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/GNU/control_diag_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8409/control_diag_debug +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/GNU/control_diag_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_3672/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 = 133.344197 - 0: The maximum resident set size (KB) = 528628 + 0: The total amount of wall time = 130.827271 + 0: The maximum resident set size (KB) = 533528 Test 021 control_diag_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/GNU/regional_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8409/regional_debug +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/GNU/regional_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_3672/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 = 717.337003 - 0: The maximum resident set size (KB) = 594996 + 0: The total amount of wall time = 737.407440 + 0: The maximum resident set size (KB) = 594592 Test 022 regional_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/GNU/rap_control_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8409/rap_control_debug +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/GNU/rap_control_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_3672/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 = 175.240533 - 0: The maximum resident set size (KB) = 842684 + 0: The total amount of wall time = 176.819542 + 0: The maximum resident set size (KB) = 845352 Test 023 rap_control_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/GNU/hrrr_control_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8409/hrrr_control_debug +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/GNU/hrrr_control_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_3672/hrrr_control_debug Checking test 024 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 177.473207 - 0: The maximum resident set size (KB) = 847740 + 0: The total amount of wall time = 172.142211 + 0: The maximum resident set size (KB) = 844000 Test 024 hrrr_control_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/GNU/rap_diag_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8409/rap_diag_debug +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/GNU/rap_diag_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_3672/rap_diag_debug Checking test 025 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 = 219.517120 - 0: The maximum resident set size (KB) = 927860 + 0: The total amount of wall time = 215.807666 + 0: The maximum resident set size (KB) = 925760 Test 025 rap_diag_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/GNU/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8409/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/GNU/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_3672/rap_noah_sfcdiff_cires_ugwp_debug Checking test 026 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 = 283.086081 - 0: The maximum resident set size (KB) = 848648 + 0: The total amount of wall time = 275.636349 + 0: The maximum resident set size (KB) = 841576 Test 026 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/GNU/rap_progcld_thompson_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8409/rap_progcld_thompson_debug +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/GNU/rap_progcld_thompson_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_3672/rap_progcld_thompson_debug Checking test 027 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 = 178.445390 - 0: The maximum resident set size (KB) = 843540 + 0: The total amount of wall time = 175.825608 + 0: The maximum resident set size (KB) = 845168 Test 027 rap_progcld_thompson_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/GNU/rrfs_v1beta_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8409/rrfs_v1beta_debug +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/GNU/rrfs_v1beta_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_3672/rrfs_v1beta_debug Checking test 028 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 174.437825 - 0: The maximum resident set size (KB) = 839524 + 0: The total amount of wall time = 172.253644 + 0: The maximum resident set size (KB) = 840736 Test 028 rrfs_v1beta_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/GNU/control_ras_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8409/control_ras_debug +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/GNU/control_ras_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_3672/control_ras_debug Checking test 029 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 103.951206 - 0: The maximum resident set size (KB) = 483764 + 0: The total amount of wall time = 103.946665 + 0: The maximum resident set size (KB) = 486224 Test 029 control_ras_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/GNU/control_stochy_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8409/control_stochy_debug +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/GNU/control_stochy_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_3672/control_stochy_debug Checking test 030 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.643696 - 0: The maximum resident set size (KB) = 476152 + 0: The total amount of wall time = 118.718237 + 0: The maximum resident set size (KB) = 481324 Test 030 control_stochy_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/GNU/control_debug_p8 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8409/control_debug_p8 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/GNU/control_debug_p8 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_3672/control_debug_p8 Checking test 031 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 = 117.937490 - 0: The maximum resident set size (KB) = 1234368 + 0: The total amount of wall time = 118.470597 + 0: The maximum resident set size (KB) = 1233504 Test 031 control_debug_p8 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/GNU/rrfs_conus13km_hrrr_warm_debugs -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8409/rrfs_conus13km_hrrr_warm_debug +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/GNU/rrfs_conus13km_hrrr_warm_debugs +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_3672/rrfs_conus13km_hrrr_warm_debug Checking test 032 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 566.454638 - 0: The maximum resident set size (KB) = 655080 + 0: The total amount of wall time = 551.924141 + 0: The maximum resident set size (KB) = 652504 Test 032 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/GNU/rrfs_conus13km_radar_tten_warm_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8409/rrfs_conus13km_radar_tten_warm_debug +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/GNU/rrfs_conus13km_radar_tten_warm_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_3672/rrfs_conus13km_radar_tten_warm_debug Checking test 033 rrfs_conus13km_radar_tten_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 564.069183 - 0: The maximum resident set size (KB) = 656560 + 0: The total amount of wall time = 539.637904 + 0: The maximum resident set size (KB) = 657312 Test 033 rrfs_conus13km_radar_tten_warm_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/GNU/control_wam_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8409/control_wam_debug +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/GNU/control_wam_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_3672/control_wam_debug Checking test 034 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 185.165666 - 0: The maximum resident set size (KB) = 194752 + 0: The total amount of wall time = 182.216367 + 0: The maximum resident set size (KB) = 191804 Test 034 control_wam_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8409/rap_control_dyn32_phy32 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/GNU/rap_control_dyn32_phy32 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_3672/rap_control_dyn32_phy32 Checking test 035 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1080,14 +1080,14 @@ Checking test 035 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1558.880659 - 0: The maximum resident set size (KB) = 689592 + 0: The total amount of wall time = 1453.968029 + 0: The maximum resident set size (KB) = 684824 Test 035 rap_control_dyn32_phy32 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8409/hrrr_control_dyn32_phy32 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/GNU/hrrr_control_dyn32_phy32 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_3672/hrrr_control_dyn32_phy32 Checking test 036 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1134,14 +1134,14 @@ Checking test 036 hrrr_control_dyn32_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 745.612673 - 0: The maximum resident set size (KB) = 687240 + 0: The total amount of wall time = 741.811392 + 0: The maximum resident set size (KB) = 688984 Test 036 hrrr_control_dyn32_phy32 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8409/rap_2threads_dyn32_phy32 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/GNU/rap_control_dyn32_phy32 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_3672/rap_2threads_dyn32_phy32 Checking test 037 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1188,14 +1188,14 @@ Checking test 037 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1320.772359 - 0: The maximum resident set size (KB) = 732028 + 0: The total amount of wall time = 1308.946874 + 0: The maximum resident set size (KB) = 728244 Test 037 rap_2threads_dyn32_phy32 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8409/hrrr_control_2threads_dyn32_phy32 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/GNU/hrrr_control_dyn32_phy32 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_3672/hrrr_control_2threads_dyn32_phy32 Checking test 038 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1242,14 +1242,14 @@ Checking test 038 hrrr_control_2threads_dyn32_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 674.147977 - 0: The maximum resident set size (KB) = 727444 + 0: The total amount of wall time = 656.081188 + 0: The maximum resident set size (KB) = 724640 Test 038 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8409/hrrr_control_decomp_dyn32_phy32 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/GNU/hrrr_control_dyn32_phy32 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_3672/hrrr_control_decomp_dyn32_phy32 Checking test 039 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1296,14 +1296,14 @@ Checking test 039 hrrr_control_decomp_dyn32_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 728.611790 - 0: The maximum resident set size (KB) = 688808 + 0: The total amount of wall time = 720.676374 + 0: The maximum resident set size (KB) = 685364 Test 039 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8409/rap_restart_dyn32_phy32 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/GNU/rap_control_dyn32_phy32 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_3672/rap_restart_dyn32_phy32 Checking test 040 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -1342,14 +1342,14 @@ Checking test 040 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1068.047160 - 0: The maximum resident set size (KB) = 515632 + 0: The total amount of wall time = 1050.262301 + 0: The maximum resident set size (KB) = 511720 Test 040 rap_restart_dyn32_phy32 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8409/hrrr_control_restart_dyn32_phy32 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/GNU/hrrr_control_dyn32_phy32 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_3672/hrrr_control_restart_dyn32_phy32 Checking test 041 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -1388,14 +1388,14 @@ Checking test 041 hrrr_control_restart_dyn32_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 364.270493 - 0: The maximum resident set size (KB) = 510080 + 0: The total amount of wall time = 364.633463 + 0: The maximum resident set size (KB) = 509196 Test 041 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/GNU/rap_control_dyn64_phy32 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8409/rap_control_dyn64_phy32 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/GNU/rap_control_dyn64_phy32 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_3672/rap_control_dyn64_phy32 Checking test 042 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1442,56 +1442,56 @@ Checking test 042 rap_control_dyn64_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1072.003697 - 0: The maximum resident set size (KB) = 706888 + 0: The total amount of wall time = 1062.893126 + 0: The maximum resident set size (KB) = 708204 Test 042 rap_control_dyn64_phy32 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/GNU/rap_control_debug_dyn32_phy32 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8409/rap_control_debug_dyn32_phy32 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/GNU/rap_control_debug_dyn32_phy32 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_3672/rap_control_debug_dyn32_phy32 Checking test 043 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 182.122700 - 0: The maximum resident set size (KB) = 704968 + 0: The total amount of wall time = 177.716825 + 0: The maximum resident set size (KB) = 711420 Test 043 rap_control_debug_dyn32_phy32 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/GNU/hrrr_control_debug_dyn32_phy32 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8409/hrrr_control_debug_dyn32_phy32 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/GNU/hrrr_control_debug_dyn32_phy32 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_3672/hrrr_control_debug_dyn32_phy32 Checking test 044 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 174.350934 - 0: The maximum resident set size (KB) = 697900 + 0: The total amount of wall time = 173.182932 + 0: The maximum resident set size (KB) = 700392 Test 044 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/GNU/rap_control_debug_dyn64_phy32 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8409/rap_control_dyn64_phy32_debug +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/GNU/rap_control_debug_dyn64_phy32 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_3672/rap_control_dyn64_phy32_debug Checking test 045 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 204.827981 - 0: The maximum resident set size (KB) = 719180 + 0: The total amount of wall time = 208.431938 + 0: The maximum resident set size (KB) = 726108 Test 045 rap_control_dyn64_phy32_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/GNU/cpld_control_p8 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8409/cpld_control_p8 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/GNU/cpld_control_p8 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_3672/cpld_control_p8 Checking test 046 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1556,14 +1556,14 @@ Checking test 046 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1933.056030 - 0: The maximum resident set size (KB) = 1430340 + 0: The total amount of wall time = 1731.578017 + 0: The maximum resident set size (KB) = 1430512 Test 046 cpld_control_p8 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/GNU/cpld_control_c96_noaero_p8 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8409/cpld_control_nowave_noaero_p8 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/GNU/cpld_control_c96_noaero_p8 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_3672/cpld_control_nowave_noaero_p8 Checking test 047 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1625,14 +1625,14 @@ Checking test 047 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 1239.771088 - 0: The maximum resident set size (KB) = 1331052 + 0: The total amount of wall time = 1218.486677 + 0: The maximum resident set size (KB) = 1332492 Test 047 cpld_control_nowave_noaero_p8 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/GNU/cpld_debug_p8 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8409/cpld_debug_p8 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/GNU/cpld_debug_p8 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_3672/cpld_debug_p8 Checking test 048 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1685,25 +1685,25 @@ Checking test 048 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 909.261203 - 0: The maximum resident set size (KB) = 1446236 + 0: The total amount of wall time = 1785.033474 + 0: The maximum resident set size (KB) = 1444876 Test 048 cpld_debug_p8 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/GNU/datm_cdeps_control_cfsr -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8409/datm_cdeps_control_cfsr +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/GNU/datm_cdeps_control_cfsr +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_3672/datm_cdeps_control_cfsr Checking test 049 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 176.322612 - 0: The maximum resident set size (KB) = 664532 + 0: The total amount of wall time = 170.817185 + 0: The maximum resident set size (KB) = 665236 Test 049 datm_cdeps_control_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Mon Apr 3 22:57:30 UTC 2023 -Elapsed time: 00h:54m:50s. Have a nice day! +Mon Apr 10 19:43:33 UTC 2023 +Elapsed time: 00h:55m:00s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index e0c9c8d460..e436194e61 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,42 +1,42 @@ -Tue Apr 4 00:11:03 UTC 2023 +Mon Apr 10 20:52:44 UTC 2023 Start Regression test -Compile 001 elapsed time 595 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 666 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 001 elapsed time 619 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 596 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON Compile 003 elapsed time 556 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 220 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 215 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 505 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 007 elapsed time 502 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 683 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 009 elapsed time 487 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 004 elapsed time 236 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 216 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 503 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 007 elapsed time 497 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 690 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 009 elapsed time 484 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release Compile 010 elapsed time 483 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 467 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 437 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 589 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 014 elapsed time 204 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 011 elapsed time 468 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 457 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 572 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 elapsed time 228 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug Compile 015 elapsed time 180 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 458 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 446 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 018 elapsed time 173 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 160 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 576 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 021 elapsed time 194 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 628 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 588 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 016 elapsed time 473 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 452 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 018 elapsed time 182 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 158 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 548 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 021 elapsed time 189 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 649 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 591 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release Compile 024 elapsed time 179 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 111 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 178 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 027 elapsed time 54 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 480 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 535 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 451 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 453 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 032 elapsed time 200 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 033 elapsed time 522 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/cpld_control_p8_mixedmode -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/cpld_control_p8_mixedmode +Compile 025 elapsed time 130 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 179 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 027 elapsed time 51 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 474 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 575 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 465 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 449 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 032 elapsed time 208 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 033 elapsed time 521 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/cpld_control_p8_mixedmode +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -101,14 +101,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 307.120361 - 0: The maximum resident set size (KB) = 3134436 + 0: The total amount of wall time = 307.709915 + 0: The maximum resident set size (KB) = 3120568 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/cpld_control_gfsv17 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/cpld_control_gfsv17 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/cpld_control_gfsv17 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -172,14 +172,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 223.030172 - 0: The maximum resident set size (KB) = 1723620 + 0: The total amount of wall time = 223.444333 + 0: The maximum resident set size (KB) = 1720256 Test 002 cpld_control_gfsv17 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/cpld_control_p8 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/cpld_control_p8 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/cpld_control_p8 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -244,14 +244,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 344.414124 - 0: The maximum resident set size (KB) = 3176948 + 0: The total amount of wall time = 338.982680 + 0: The maximum resident set size (KB) = 3170416 Test 003 cpld_control_p8 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/cpld_control_p8 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/cpld_restart_p8 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/cpld_control_p8 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -304,14 +304,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 193.835864 - 0: The maximum resident set size (KB) = 3051332 + 0: The total amount of wall time = 192.742434 + 0: The maximum resident set size (KB) = 3042952 Test 004 cpld_restart_p8 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/cpld_control_p8 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/cpld_2threads_p8 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/cpld_control_p8 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/cpld_2threads_p8 Checking test 005 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -364,14 +364,14 @@ Checking test 005 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 351.026819 - 0: The maximum resident set size (KB) = 3516032 + 0: The total amount of wall time = 350.530019 + 0: The maximum resident set size (KB) = 3518080 Test 005 cpld_2threads_p8 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/cpld_control_p8 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/cpld_decomp_p8 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/cpld_control_p8 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/cpld_decomp_p8 Checking test 006 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -424,14 +424,14 @@ Checking test 006 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 341.516472 - 0: The maximum resident set size (KB) = 3172540 + 0: The total amount of wall time = 338.681824 + 0: The maximum resident set size (KB) = 3167532 Test 006 cpld_decomp_p8 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/cpld_control_p8 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/cpld_mpi_p8 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/cpld_control_p8 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/cpld_mpi_p8 Checking test 007 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -484,14 +484,14 @@ Checking test 007 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 277.776525 - 0: The maximum resident set size (KB) = 3016108 + 0: The total amount of wall time = 278.587053 + 0: The maximum resident set size (KB) = 3014752 Test 007 cpld_mpi_p8 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/cpld_control_ciceC_p8 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/cpld_control_ciceC_p8 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/cpld_control_ciceC_p8 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/cpld_control_ciceC_p8 Checking test 008 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -556,14 +556,14 @@ Checking test 008 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 338.898488 - 0: The maximum resident set size (KB) = 3183516 + 0: The total amount of wall time = 338.981634 + 0: The maximum resident set size (KB) = 3170304 Test 008 cpld_control_ciceC_p8 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/cpld_control_c192_p8 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/cpld_control_c192_p8 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/cpld_control_c192_p8 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/cpld_control_c192_p8 Checking test 009 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -616,14 +616,14 @@ Checking test 009 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 579.326863 - 0: The maximum resident set size (KB) = 3257900 + 0: The total amount of wall time = 587.631634 + 0: The maximum resident set size (KB) = 3247052 Test 009 cpld_control_c192_p8 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/cpld_control_c192_p8 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/cpld_restart_c192_p8 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/cpld_control_c192_p8 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/cpld_restart_c192_p8 Checking test 010 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -676,14 +676,14 @@ Checking test 010 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 405.344061 - 0: The maximum resident set size (KB) = 3149232 + 0: The total amount of wall time = 402.330038 + 0: The maximum resident set size (KB) = 3146428 Test 010 cpld_restart_c192_p8 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/cpld_bmark_p8 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/cpld_bmark_p8 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/cpld_bmark_p8 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/cpld_bmark_p8 Checking test 011 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -731,14 +731,14 @@ Checking test 011 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 707.315271 - 0: The maximum resident set size (KB) = 4033028 + 0: The total amount of wall time = 728.122727 + 0: The maximum resident set size (KB) = 4039756 Test 011 cpld_bmark_p8 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/cpld_bmark_p8 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/cpld_restart_bmark_p8 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/cpld_bmark_p8 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/cpld_restart_bmark_p8 Checking test 012 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -786,14 +786,14 @@ Checking test 012 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 446.778597 - 0: The maximum resident set size (KB) = 3975356 + 0: The total amount of wall time = 459.943895 + 0: The maximum resident set size (KB) = 3962916 Test 012 cpld_restart_bmark_p8 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/cpld_control_noaero_p8 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/cpld_control_noaero_p8 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/cpld_control_noaero_p8 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/cpld_control_noaero_p8 Checking test 013 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -857,14 +857,14 @@ Checking test 013 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 261.715389 - 0: The maximum resident set size (KB) = 1712420 + 0: The total amount of wall time = 261.573398 + 0: The maximum resident set size (KB) = 1714720 Test 013 cpld_control_noaero_p8 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/cpld_control_c96_noaero_p8 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/cpld_control_nowave_noaero_p8 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/cpld_control_c96_noaero_p8 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/cpld_control_nowave_noaero_p8 Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -926,14 +926,14 @@ Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 257.348400 - 0: The maximum resident set size (KB) = 1757124 + 0: The total amount of wall time = 261.118935 + 0: The maximum resident set size (KB) = 1762192 Test 014 cpld_control_nowave_noaero_p8 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/cpld_debug_p8 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/cpld_debug_p8 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/cpld_debug_p8 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/cpld_debug_p8 Checking test 015 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -986,14 +986,14 @@ Checking test 015 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 643.324451 - 0: The maximum resident set size (KB) = 3245716 + 0: The total amount of wall time = 647.876837 + 0: The maximum resident set size (KB) = 3236928 Test 015 cpld_debug_p8 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/cpld_debug_noaero_p8 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/cpld_debug_noaero_p8 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/cpld_debug_noaero_p8 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/cpld_debug_noaero_p8 Checking test 016 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1045,14 +1045,14 @@ Checking test 016 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 394.103843 - 0: The maximum resident set size (KB) = 1740944 + 0: The total amount of wall time = 403.498823 + 0: The maximum resident set size (KB) = 1734268 Test 016 cpld_debug_noaero_p8 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/cpld_control_noaero_p8_agrid -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/cpld_control_noaero_p8_agrid +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/cpld_control_noaero_p8_agrid +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/cpld_control_noaero_p8_agrid Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1114,14 +1114,14 @@ Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 264.779331 - 0: The maximum resident set size (KB) = 1761096 + 0: The total amount of wall time = 268.174973 + 0: The maximum resident set size (KB) = 1753288 Test 017 cpld_control_noaero_p8_agrid PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/cpld_control_c48 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/cpld_control_c48 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/cpld_control_c48 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/cpld_control_c48 Checking test 018 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1171,14 +1171,14 @@ Checking test 018 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 571.971011 - 0: The maximum resident set size (KB) = 2797496 + 0: The total amount of wall time = 582.221910 + 0: The maximum resident set size (KB) = 2809096 Test 018 cpld_control_c48 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/cpld_warmstart_c48 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/cpld_warmstart_c48 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/cpld_warmstart_c48 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/cpld_warmstart_c48 Checking test 019 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1228,14 +1228,14 @@ Checking test 019 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 153.437367 - 0: The maximum resident set size (KB) = 2809704 + 0: The total amount of wall time = 154.074081 + 0: The maximum resident set size (KB) = 2807708 Test 019 cpld_warmstart_c48 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/cpld_warmstart_c48 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/cpld_restart_c48 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/cpld_warmstart_c48 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/cpld_restart_c48 Checking test 020 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1285,14 +1285,14 @@ Checking test 020 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 82.531718 - 0: The maximum resident set size (KB) = 2248616 + 0: The total amount of wall time = 79.797423 + 0: The maximum resident set size (KB) = 2242484 Test 020 cpld_restart_c48 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/cpld_control_p8_faster -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/cpld_control_p8_faster +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/cpld_control_p8_faster +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/cpld_control_p8_faster Checking test 021 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1357,14 +1357,14 @@ Checking test 021 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 315.570047 - 0: The maximum resident set size (KB) = 3179996 + 0: The total amount of wall time = 318.033692 + 0: The maximum resident set size (KB) = 3166312 Test 021 cpld_control_p8_faster PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/control_CubedSphereGrid -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/control_CubedSphereGrid +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/control_CubedSphereGrid +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/control_CubedSphereGrid Checking test 022 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1391,28 +1391,28 @@ Checking test 022 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 131.770583 - 0: The maximum resident set size (KB) = 628136 + 0: The total amount of wall time = 129.450504 + 0: The maximum resident set size (KB) = 625296 Test 022 control_CubedSphereGrid PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/control_CubedSphereGrid_parallel -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/control_CubedSphereGrid_parallel +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/control_CubedSphereGrid_parallel +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/control_CubedSphereGrid_parallel Checking test 023 control_CubedSphereGrid_parallel results .... - Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 128.636430 - 0: The maximum resident set size (KB) = 622964 + 0: The total amount of wall time = 126.998050 + 0: The maximum resident set size (KB) = 626464 Test 023 control_CubedSphereGrid_parallel PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/control_latlon -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/control_latlon +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/control_latlon +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/control_latlon Checking test 024 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1423,14 +1423,14 @@ Checking test 024 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 133.440234 - 0: The maximum resident set size (KB) = 627988 + 0: The total amount of wall time = 134.479518 + 0: The maximum resident set size (KB) = 623620 Test 024 control_latlon PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/control_wrtGauss_netcdf_parallel -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/control_wrtGauss_netcdf_parallel +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/control_wrtGauss_netcdf_parallel +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/control_wrtGauss_netcdf_parallel Checking test 025 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1441,14 +1441,14 @@ Checking test 025 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 137.000212 - 0: The maximum resident set size (KB) = 627820 + 0: The total amount of wall time = 135.455071 + 0: The maximum resident set size (KB) = 631844 Test 025 control_wrtGauss_netcdf_parallel PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/control_c48 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/control_c48 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/control_c48 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/control_c48 Checking test 026 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1487,14 +1487,14 @@ Checking test 026 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 370.665622 -0: The maximum resident set size (KB) = 821008 +0: The total amount of wall time = 370.880901 +0: The maximum resident set size (KB) = 816828 Test 026 control_c48 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/control_c192 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/control_c192 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/control_c192 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/control_c192 Checking test 027 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1505,14 +1505,14 @@ Checking test 027 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 528.329017 - 0: The maximum resident set size (KB) = 761964 + 0: The total amount of wall time = 525.280957 + 0: The maximum resident set size (KB) = 761040 Test 027 control_c192 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/control_c384 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/control_c384 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/control_c384 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/control_c384 Checking test 028 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1523,14 +1523,14 @@ Checking test 028 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 533.545074 - 0: The maximum resident set size (KB) = 1257144 + 0: The total amount of wall time = 541.599407 + 0: The maximum resident set size (KB) = 1261332 Test 028 control_c384 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/control_c384gdas -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/control_c384gdas +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/control_c384gdas +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/control_c384gdas Checking test 029 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1573,14 +1573,14 @@ Checking test 029 control_c384gdas results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 462.129102 - 0: The maximum resident set size (KB) = 1373324 + 0: The total amount of wall time = 481.511634 + 0: The maximum resident set size (KB) = 1365660 Test 029 control_c384gdas PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/control_stochy -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/control_stochy +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/control_stochy +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/control_stochy Checking test 030 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1591,28 +1591,28 @@ Checking test 030 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 87.431706 - 0: The maximum resident set size (KB) = 632400 + 0: The total amount of wall time = 87.534170 + 0: The maximum resident set size (KB) = 631444 Test 030 control_stochy PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/control_stochy -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/control_stochy_restart +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/control_stochy +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/control_stochy_restart Checking test 031 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 47.112728 - 0: The maximum resident set size (KB) = 484744 + 0: The total amount of wall time = 47.440151 + 0: The maximum resident set size (KB) = 483988 Test 031 control_stochy_restart PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/control_lndp -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/control_lndp +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/control_lndp +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/control_lndp Checking test 032 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1623,14 +1623,14 @@ Checking test 032 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 81.810972 - 0: The maximum resident set size (KB) = 629668 + 0: The total amount of wall time = 81.710872 + 0: The maximum resident set size (KB) = 629780 Test 032 control_lndp PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/control_iovr4 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/control_iovr4 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/control_iovr4 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/control_iovr4 Checking test 033 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1645,14 +1645,14 @@ Checking test 033 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 136.321422 - 0: The maximum resident set size (KB) = 631304 + 0: The total amount of wall time = 134.622448 + 0: The maximum resident set size (KB) = 632492 Test 033 control_iovr4 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/control_iovr5 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/control_iovr5 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/control_iovr5 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/control_iovr5 Checking test 034 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1667,14 +1667,14 @@ Checking test 034 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 136.071718 - 0: The maximum resident set size (KB) = 626564 + 0: The total amount of wall time = 134.673712 + 0: The maximum resident set size (KB) = 629480 Test 034 control_iovr5 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/control_p8 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/control_p8 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/control_p8 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/control_p8 Checking test 035 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1721,14 +1721,14 @@ Checking test 035 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 166.891448 - 0: The maximum resident set size (KB) = 1596124 + 0: The total amount of wall time = 166.337529 + 0: The maximum resident set size (KB) = 1601092 Test 035 control_p8 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/control_p8_lndp -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/control_p8_lndp +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/control_p8_lndp +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/control_p8_lndp Checking test 036 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1747,14 +1747,14 @@ Checking test 036 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 312.546667 - 0: The maximum resident set size (KB) = 1606832 + 0: The total amount of wall time = 313.347306 + 0: The maximum resident set size (KB) = 1594660 Test 036 control_p8_lndp PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/control_p8 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/control_restart_p8 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/control_p8 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/control_restart_p8 Checking test 037 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1793,14 +1793,14 @@ Checking test 037 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 86.961050 - 0: The maximum resident set size (KB) = 877600 + 0: The total amount of wall time = 86.489548 + 0: The maximum resident set size (KB) = 873640 Test 037 control_restart_p8 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/control_p8 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/control_decomp_p8 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/control_p8 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/control_decomp_p8 Checking test 038 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1843,14 +1843,14 @@ Checking test 038 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 172.378049 - 0: The maximum resident set size (KB) = 1581532 + 0: The total amount of wall time = 173.619420 + 0: The maximum resident set size (KB) = 1596188 Test 038 control_decomp_p8 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/control_p8 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/control_2threads_p8 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/control_p8 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/control_2threads_p8 Checking test 039 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1893,14 +1893,14 @@ Checking test 039 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 163.018073 - 0: The maximum resident set size (KB) = 1680676 + 0: The total amount of wall time = 162.502767 + 0: The maximum resident set size (KB) = 1686304 Test 039 control_2threads_p8 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/control_p8_rrtmgp -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/control_p8_rrtmgp +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/control_p8_rrtmgp +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/control_p8_rrtmgp Checking test 040 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1947,14 +1947,14 @@ Checking test 040 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 223.553204 - 0: The maximum resident set size (KB) = 1678512 + 0: The total amount of wall time = 223.201101 + 0: The maximum resident set size (KB) = 1678876 Test 040 control_p8_rrtmgp PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/merra2_thompson -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/merra2_thompson +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/merra2_thompson +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/merra2_thompson Checking test 041 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2001,14 +2001,14 @@ Checking test 041 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 189.380360 - 0: The maximum resident set size (KB) = 1614444 + 0: The total amount of wall time = 189.487918 + 0: The maximum resident set size (KB) = 1616152 Test 041 merra2_thompson PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/regional_control -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/regional_control +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/regional_control +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/regional_control Checking test 042 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2019,28 +2019,28 @@ Checking test 042 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 301.544835 - 0: The maximum resident set size (KB) = 864188 + 0: The total amount of wall time = 299.939618 + 0: The maximum resident set size (KB) = 870028 Test 042 regional_control PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/regional_control -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/regional_restart +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/regional_control +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/regional_restart Checking test 043 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 151.083669 - 0: The maximum resident set size (KB) = 862588 + 0: The total amount of wall time = 150.898856 + 0: The maximum resident set size (KB) = 863144 Test 043 regional_restart PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/regional_control -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/regional_decomp +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/regional_control +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/regional_decomp Checking test 044 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2051,14 +2051,14 @@ Checking test 044 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 312.745539 - 0: The maximum resident set size (KB) = 861092 + 0: The total amount of wall time = 315.097298 + 0: The maximum resident set size (KB) = 860344 Test 044 regional_decomp PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/regional_control -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/regional_2threads +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/regional_control +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/regional_2threads Checking test 045 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2069,14 +2069,14 @@ Checking test 045 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 183.284831 - 0: The maximum resident set size (KB) = 840432 + 0: The total amount of wall time = 182.786520 + 0: The maximum resident set size (KB) = 843540 Test 045 regional_2threads PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/regional_noquilt -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/regional_noquilt +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/regional_noquilt +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/regional_noquilt Checking test 046 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2084,28 +2084,28 @@ Checking test 046 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 = 320.539869 - 0: The maximum resident set size (KB) = 855804 + 0: The total amount of wall time = 319.406447 + 0: The maximum resident set size (KB) = 858168 Test 046 regional_noquilt PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/regional_netcdf_parallel -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/regional_netcdf_parallel +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/regional_netcdf_parallel +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/regional_netcdf_parallel Checking test 047 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 296.421663 - 0: The maximum resident set size (KB) = 864296 + 0: The total amount of wall time = 297.807628 + 0: The maximum resident set size (KB) = 863276 Test 047 regional_netcdf_parallel PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/regional_control -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/regional_2dwrtdecomp +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/regional_control +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/regional_2dwrtdecomp Checking test 048 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2116,14 +2116,14 @@ Checking test 048 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 302.349549 - 0: The maximum resident set size (KB) = 867468 + 0: The total amount of wall time = 299.646273 + 0: The maximum resident set size (KB) = 871840 Test 048 regional_2dwrtdecomp PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/fv3_regional_wofs -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/regional_wofs +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/fv3_regional_wofs +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/regional_wofs Checking test 049 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2134,14 +2134,14 @@ Checking test 049 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 375.168206 - 0: The maximum resident set size (KB) = 627820 + 0: The total amount of wall time = 377.909923 + 0: The maximum resident set size (KB) = 626364 Test 049 regional_wofs PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/rap_control -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/rap_control +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/rap_control +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/rap_control Checking test 050 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2188,14 +2188,14 @@ Checking test 050 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 459.209132 - 0: The maximum resident set size (KB) = 1065812 + 0: The total amount of wall time = 459.278893 + 0: The maximum resident set size (KB) = 1060960 Test 050 rap_control PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/regional_spp_sppt_shum_skeb -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/regional_spp_sppt_shum_skeb +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/regional_spp_sppt_shum_skeb +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/regional_spp_sppt_shum_skeb Checking test 051 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2206,14 +2206,14 @@ Checking test 051 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 281.627949 - 0: The maximum resident set size (KB) = 1173896 + 0: The total amount of wall time = 293.309527 + 0: The maximum resident set size (KB) = 1181124 Test 051 regional_spp_sppt_shum_skeb PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/rap_control -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/rap_decomp +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/rap_control +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/rap_decomp Checking test 052 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2260,14 +2260,14 @@ Checking test 052 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 481.081107 - 0: The maximum resident set size (KB) = 1007300 + 0: The total amount of wall time = 479.142238 + 0: The maximum resident set size (KB) = 1005328 Test 052 rap_decomp PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/rap_control -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/rap_2threads +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/rap_control +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/rap_2threads Checking test 053 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2314,14 +2314,14 @@ Checking test 053 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 440.223152 - 0: The maximum resident set size (KB) = 1133156 + 0: The total amount of wall time = 440.732393 + 0: The maximum resident set size (KB) = 1135736 Test 053 rap_2threads PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/rap_control -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/rap_restart +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/rap_control +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/rap_restart Checking test 054 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2360,14 +2360,14 @@ Checking test 054 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 232.720132 - 0: The maximum resident set size (KB) = 974600 + 0: The total amount of wall time = 233.089856 + 0: The maximum resident set size (KB) = 973368 Test 054 rap_restart PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/rap_sfcdiff -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/rap_sfcdiff +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/rap_sfcdiff +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/rap_sfcdiff Checking test 055 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2414,14 +2414,14 @@ Checking test 055 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 451.598657 - 0: The maximum resident set size (KB) = 1061356 + 0: The total amount of wall time = 449.099162 + 0: The maximum resident set size (KB) = 1061016 Test 055 rap_sfcdiff PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/rap_sfcdiff -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/rap_sfcdiff_decomp +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/rap_sfcdiff +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/rap_sfcdiff_decomp Checking test 056 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2468,14 +2468,14 @@ Checking test 056 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 475.944274 - 0: The maximum resident set size (KB) = 1007580 + 0: The total amount of wall time = 476.081275 + 0: The maximum resident set size (KB) = 1004556 Test 056 rap_sfcdiff_decomp PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/rap_sfcdiff -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/rap_sfcdiff_restart +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/rap_sfcdiff +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/rap_sfcdiff_restart Checking test 057 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2514,14 +2514,14 @@ Checking test 057 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 342.993904 - 0: The maximum resident set size (KB) = 989632 + 0: The total amount of wall time = 341.915153 + 0: The maximum resident set size (KB) = 986004 Test 057 rap_sfcdiff_restart PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/hrrr_control -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/hrrr_control +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/hrrr_control +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/hrrr_control Checking test 058 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2568,14 +2568,14 @@ Checking test 058 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 435.887878 - 0: The maximum resident set size (KB) = 1062724 + 0: The total amount of wall time = 435.187422 + 0: The maximum resident set size (KB) = 1062128 Test 058 hrrr_control PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/hrrr_control -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/hrrr_control_decomp +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/hrrr_control +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/hrrr_control_decomp Checking test 059 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2622,14 +2622,14 @@ Checking test 059 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 458.943380 - 0: The maximum resident set size (KB) = 1002304 + 0: The total amount of wall time = 455.925833 + 0: The maximum resident set size (KB) = 1003300 Test 059 hrrr_control_decomp PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/hrrr_control -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/hrrr_control_2threads +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/hrrr_control +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/hrrr_control_2threads Checking test 060 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2676,14 +2676,14 @@ Checking test 060 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 415.698813 - 0: The maximum resident set size (KB) = 1135076 + 0: The total amount of wall time = 415.949857 + 0: The maximum resident set size (KB) = 1140700 Test 060 hrrr_control_2threads PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/hrrr_control -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/hrrr_control_restart +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/hrrr_control +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/hrrr_control_restart Checking test 061 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2722,14 +2722,14 @@ Checking test 061 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 328.666373 - 0: The maximum resident set size (KB) = 989348 + 0: The total amount of wall time = 330.546844 + 0: The maximum resident set size (KB) = 982792 Test 061 hrrr_control_restart PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/rrfs_v1beta -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/rrfs_v1beta +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/rrfs_v1beta +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/rrfs_v1beta Checking test 062 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2776,14 +2776,14 @@ Checking test 062 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 448.203149 - 0: The maximum resident set size (KB) = 1056008 + 0: The total amount of wall time = 449.543912 + 0: The maximum resident set size (KB) = 1057576 Test 062 rrfs_v1beta PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/rrfs_v1nssl -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/rrfs_v1nssl +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/rrfs_v1nssl +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/rrfs_v1nssl Checking test 063 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2798,14 +2798,14 @@ Checking test 063 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 525.643475 - 0: The maximum resident set size (KB) = 689468 + 0: The total amount of wall time = 525.697892 + 0: The maximum resident set size (KB) = 694636 Test 063 rrfs_v1nssl PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/rrfs_v1nssl_nohailnoccn +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/rrfs_v1nssl_nohailnoccn Checking test 064 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2820,14 +2820,14 @@ Checking test 064 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 511.729474 - 0: The maximum resident set size (KB) = 762932 + 0: The total amount of wall time = 513.570399 + 0: The maximum resident set size (KB) = 757288 Test 064 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/rrfs_conus13km_hrrr_warm -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/rrfs_conus13km_hrrr_warm +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/rrfs_conus13km_hrrr_warm +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/rrfs_conus13km_hrrr_warm Checking test 065 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2836,14 +2836,14 @@ Checking test 065 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 123.925069 - 0: The maximum resident set size (KB) = 923604 + 0: The total amount of wall time = 124.283502 + 0: The maximum resident set size (KB) = 933880 Test 065 rrfs_conus13km_hrrr_warm PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/rrfs_smoke_conus13km_hrrr_warm Checking test 066 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2852,14 +2852,14 @@ Checking test 066 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 140.502489 - 0: The maximum resident set size (KB) = 962208 + 0: The total amount of wall time = 139.274324 + 0: The maximum resident set size (KB) = 961728 Test 066 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/rrfs_conus13km_radar_tten_warm +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/rrfs_conus13km_radar_tten_warm Checking test 067 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2868,14 +2868,14 @@ Checking test 067 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 124.411739 - 0: The maximum resident set size (KB) = 939780 + 0: The total amount of wall time = 123.637632 + 0: The maximum resident set size (KB) = 937580 Test 067 rrfs_conus13km_radar_tten_warm PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/rrfs_conus13km_hrrr_warm -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/rrfs_conus13km_hrrr_warm_2threads +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/rrfs_conus13km_hrrr_warm +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/rrfs_conus13km_hrrr_warm_2threads Checking test 068 rrfs_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2884,14 +2884,14 @@ Checking test 068 rrfs_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 77.368218 - 0: The maximum resident set size (KB) = 876520 + 0: The total amount of wall time = 78.067306 + 0: The maximum resident set size (KB) = 882684 Test 068 rrfs_conus13km_hrrr_warm_2threads PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/rrfs_conus13km_radar_tten_warm_2threads +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/rrfs_conus13km_radar_tten_warm_2threads Checking test 069 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2900,14 +2900,14 @@ Checking test 069 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 78.416554 - 0: The maximum resident set size (KB) = 883324 + 0: The total amount of wall time = 78.465821 + 0: The maximum resident set size (KB) = 884700 Test 069 rrfs_conus13km_radar_tten_warm_2threads PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/control_csawmg -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/control_csawmg +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/control_csawmg +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/control_csawmg Checking test 070 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2918,14 +2918,14 @@ Checking test 070 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 341.147368 - 0: The maximum resident set size (KB) = 725396 + 0: The total amount of wall time = 344.006056 + 0: The maximum resident set size (KB) = 723796 Test 070 control_csawmg PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/control_csawmgt -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/control_csawmgt +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/control_csawmgt +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/control_csawmgt Checking test 071 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2936,14 +2936,14 @@ Checking test 071 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 336.603098 - 0: The maximum resident set size (KB) = 726468 + 0: The total amount of wall time = 339.103057 + 0: The maximum resident set size (KB) = 723476 Test 071 control_csawmgt PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/control_ras -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/control_ras +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/control_ras +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/control_ras Checking test 072 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2954,26 +2954,26 @@ Checking test 072 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 179.641535 - 0: The maximum resident set size (KB) = 720208 + 0: The total amount of wall time = 179.902136 + 0: The maximum resident set size (KB) = 714468 Test 072 control_ras PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/control_wam -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/control_wam +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/control_wam +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/control_wam Checking test 073 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 111.557955 - 0: The maximum resident set size (KB) = 635872 + 0: The total amount of wall time = 112.283299 + 0: The maximum resident set size (KB) = 639236 Test 073 control_wam PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/control_p8_faster -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/control_p8_faster +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/control_p8_faster +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/control_p8_faster Checking test 074 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3020,14 +3020,14 @@ Checking test 074 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 150.560775 - 0: The maximum resident set size (KB) = 1610768 + 0: The total amount of wall time = 151.202523 + 0: The maximum resident set size (KB) = 1605888 Test 074 control_p8_faster PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/regional_control_faster -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/regional_control_faster +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/regional_control_faster +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/regional_control_faster Checking test 075 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3038,42 +3038,42 @@ Checking test 075 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 271.387769 - 0: The maximum resident set size (KB) = 870528 + 0: The total amount of wall time = 271.283613 + 0: The maximum resident set size (KB) = 869548 Test 075 regional_control_faster PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/rrfs_conus13km_hrrr_warm_debug +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/rrfs_conus13km_hrrr_warm_debug Checking test 076 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 723.358987 - 0: The maximum resident set size (KB) = 960520 + 0: The total amount of wall time = 732.034819 + 0: The maximum resident set size (KB) = 963188 Test 076 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/rrfs_conus13km_radar_tten_warm_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/rrfs_conus13km_radar_tten_warm_debug +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/rrfs_conus13km_radar_tten_warm_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/rrfs_conus13km_radar_tten_warm_debug Checking test 077 rrfs_conus13km_radar_tten_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 728.379997 - 0: The maximum resident set size (KB) = 966184 + 0: The total amount of wall time = 728.683923 + 0: The maximum resident set size (KB) = 962168 Test 077 rrfs_conus13km_radar_tten_warm_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/control_CubedSphereGrid_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/control_CubedSphereGrid_debug +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/control_CubedSphereGrid_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/control_CubedSphereGrid_debug Checking test 078 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3100,334 +3100,334 @@ Checking test 078 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 160.396738 - 0: The maximum resident set size (KB) = 789168 + 0: The total amount of wall time = 160.899566 + 0: The maximum resident set size (KB) = 786364 Test 078 control_CubedSphereGrid_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/control_wrtGauss_netcdf_parallel_debug +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/control_wrtGauss_netcdf_parallel_debug Checking test 079 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 149.791146 - 0: The maximum resident set size (KB) = 796808 + 0: The total amount of wall time = 149.243765 + 0: The maximum resident set size (KB) = 796196 Test 079 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/control_stochy_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/control_stochy_debug +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/control_stochy_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/control_stochy_debug Checking test 080 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 = 168.787861 - 0: The maximum resident set size (KB) = 802696 + 0: The total amount of wall time = 170.399848 + 0: The maximum resident set size (KB) = 805364 Test 080 control_stochy_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/control_lndp_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/control_lndp_debug +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/control_lndp_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/control_lndp_debug Checking test 081 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.232307 - 0: The maximum resident set size (KB) = 800504 + 0: The total amount of wall time = 152.487853 + 0: The maximum resident set size (KB) = 796676 Test 081 control_lndp_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/control_csawmg_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/control_csawmg_debug +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/control_csawmg_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/control_csawmg_debug Checking test 082 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 = 229.994142 - 0: The maximum resident set size (KB) = 843736 + 0: The total amount of wall time = 233.011310 + 0: The maximum resident set size (KB) = 844108 Test 082 control_csawmg_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/control_csawmgt_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/control_csawmgt_debug +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/control_csawmgt_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/control_csawmgt_debug Checking test 083 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 = 231.443437 - 0: The maximum resident set size (KB) = 845756 + 0: The total amount of wall time = 229.492967 + 0: The maximum resident set size (KB) = 845428 Test 083 control_csawmgt_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/control_ras_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/control_ras_debug +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/control_ras_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/control_ras_debug Checking test 084 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.851398 - 0: The maximum resident set size (KB) = 810904 + 0: The total amount of wall time = 154.898935 + 0: The maximum resident set size (KB) = 803852 Test 084 control_ras_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/control_diag_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/control_diag_debug +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/control_diag_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/control_diag_debug Checking test 085 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 = 156.707550 - 0: The maximum resident set size (KB) = 848520 + 0: The total amount of wall time = 158.225226 + 0: The maximum resident set size (KB) = 848264 Test 085 control_diag_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/control_debug_p8 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/control_debug_p8 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/control_debug_p8 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/control_debug_p8 Checking test 086 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 = 168.116637 - 0: The maximum resident set size (KB) = 1630900 + 0: The total amount of wall time = 170.759875 + 0: The maximum resident set size (KB) = 1620576 Test 086 control_debug_p8 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/regional_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/regional_debug +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/regional_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/regional_debug Checking test 087 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 = 978.420207 - 0: The maximum resident set size (KB) = 888728 + 0: The total amount of wall time = 977.982831 + 0: The maximum resident set size (KB) = 907428 Test 087 regional_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/rap_control_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/rap_control_debug +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/rap_control_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/rap_control_debug Checking test 088 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 275.055409 - 0: The maximum resident set size (KB) = 1171568 + 0: The total amount of wall time = 275.473895 + 0: The maximum resident set size (KB) = 1172320 Test 088 rap_control_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/hrrr_control_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/hrrr_control_debug +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/hrrr_control_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/hrrr_control_debug Checking test 089 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 269.434076 - 0: The maximum resident set size (KB) = 1167276 + 0: The total amount of wall time = 272.068216 + 0: The maximum resident set size (KB) = 1167696 Test 089 hrrr_control_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/rap_control_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/rap_unified_drag_suite_debug +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/rap_control_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/rap_unified_drag_suite_debug Checking test 090 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 = 275.948787 - 0: The maximum resident set size (KB) = 1173516 + 0: The total amount of wall time = 286.175454 + 0: The maximum resident set size (KB) = 1171948 Test 090 rap_unified_drag_suite_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/rap_diag_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/rap_diag_debug +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/rap_diag_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/rap_diag_debug Checking test 091 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 = 289.543302 - 0: The maximum resident set size (KB) = 1262040 + 0: The total amount of wall time = 290.914023 + 0: The maximum resident set size (KB) = 1260812 Test 091 rap_diag_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/rap_cires_ugwp_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/rap_cires_ugwp_debug +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/rap_cires_ugwp_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/rap_cires_ugwp_debug Checking test 092 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 = 279.885048 - 0: The maximum resident set size (KB) = 1176004 + 0: The total amount of wall time = 282.640831 + 0: The maximum resident set size (KB) = 1167880 Test 092 rap_cires_ugwp_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/rap_cires_ugwp_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/rap_unified_ugwp_debug +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/rap_cires_ugwp_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/rap_unified_ugwp_debug Checking test 093 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 = 279.880273 - 0: The maximum resident set size (KB) = 1179556 + 0: The total amount of wall time = 290.703134 + 0: The maximum resident set size (KB) = 1170200 Test 093 rap_unified_ugwp_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/rap_lndp_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/rap_lndp_debug +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/rap_lndp_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/rap_lndp_debug Checking test 094 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 = 276.634256 - 0: The maximum resident set size (KB) = 1179488 + 0: The total amount of wall time = 278.575439 + 0: The maximum resident set size (KB) = 1180528 Test 094 rap_lndp_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/rap_flake_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/rap_flake_debug +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/rap_flake_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/rap_flake_debug Checking test 095 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 = 270.868993 - 0: The maximum resident set size (KB) = 1174452 + 0: The total amount of wall time = 276.726213 + 0: The maximum resident set size (KB) = 1173048 Test 095 rap_flake_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/rap_progcld_thompson_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/rap_progcld_thompson_debug +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/rap_progcld_thompson_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/rap_progcld_thompson_debug Checking test 096 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 = 273.188723 - 0: The maximum resident set size (KB) = 1178064 + 0: The total amount of wall time = 278.609327 + 0: The maximum resident set size (KB) = 1172244 Test 096 rap_progcld_thompson_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/rap_noah_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/rap_noah_debug +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/rap_noah_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/rap_noah_debug Checking test 097 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 = 271.198928 - 0: The maximum resident set size (KB) = 1171124 + 0: The total amount of wall time = 273.277621 + 0: The maximum resident set size (KB) = 1168024 Test 097 rap_noah_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/rap_sfcdiff_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/rap_sfcdiff_debug +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/rap_sfcdiff_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/rap_sfcdiff_debug Checking test 098 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 = 274.937583 - 0: The maximum resident set size (KB) = 1177152 + 0: The total amount of wall time = 278.044271 + 0: The maximum resident set size (KB) = 1178068 Test 098 rap_sfcdiff_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/rap_noah_sfcdiff_cires_ugwp_debug Checking test 099 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 = 455.760349 - 0: The maximum resident set size (KB) = 1174672 + 0: The total amount of wall time = 452.016085 + 0: The maximum resident set size (KB) = 1169660 Test 099 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/rrfs_v1beta_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/rrfs_v1beta_debug +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/rrfs_v1beta_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/rrfs_v1beta_debug Checking test 100 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 = 268.704320 - 0: The maximum resident set size (KB) = 1174404 + 0: The total amount of wall time = 271.314902 + 0: The maximum resident set size (KB) = 1167328 Test 100 rrfs_v1beta_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/control_wam_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/control_wam_debug +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/control_wam_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/control_wam_debug Checking test 101 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 286.887319 - 0: The maximum resident set size (KB) = 522656 + 0: The total amount of wall time = 279.347361 + 0: The maximum resident set size (KB) = 535456 Test 101 control_wam_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/regional_spp_sppt_shum_skeb_dyn32_phy32 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 102 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3438,14 +3438,14 @@ Checking test 102 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 258.967527 - 0: The maximum resident set size (KB) = 1070228 + 0: The total amount of wall time = 263.313168 + 0: The maximum resident set size (KB) = 1067012 Test 102 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/rap_control_dyn32_phy32 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/rap_control_dyn32_phy32 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/rap_control_dyn32_phy32 Checking test 103 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3492,14 +3492,14 @@ Checking test 103 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 369.518594 - 0: The maximum resident set size (KB) = 1006664 + 0: The total amount of wall time = 371.872905 + 0: The maximum resident set size (KB) = 966040 Test 103 rap_control_dyn32_phy32 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/hrrr_control_dyn32_phy32 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/hrrr_control_dyn32_phy32 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/hrrr_control_dyn32_phy32 Checking test 104 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3546,14 +3546,14 @@ Checking test 104 hrrr_control_dyn32_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 193.675806 - 0: The maximum resident set size (KB) = 962560 + 0: The total amount of wall time = 195.304831 + 0: The maximum resident set size (KB) = 951140 Test 104 hrrr_control_dyn32_phy32 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/rap_2threads_dyn32_phy32 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/rap_control_dyn32_phy32 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/rap_2threads_dyn32_phy32 Checking test 105 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3600,14 +3600,14 @@ Checking test 105 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 355.919636 - 0: The maximum resident set size (KB) = 1024932 + 0: The total amount of wall time = 358.793113 + 0: The maximum resident set size (KB) = 1023004 Test 105 rap_2threads_dyn32_phy32 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/hrrr_control_2threads_dyn32_phy32 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/hrrr_control_dyn32_phy32 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/hrrr_control_2threads_dyn32_phy32 Checking test 106 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3654,14 +3654,14 @@ Checking test 106 hrrr_control_2threads_dyn32_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 190.216818 - 0: The maximum resident set size (KB) = 1007920 + 0: The total amount of wall time = 190.614090 + 0: The maximum resident set size (KB) = 1009284 Test 106 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/hrrr_control_decomp_dyn32_phy32 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/hrrr_control_dyn32_phy32 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/hrrr_control_decomp_dyn32_phy32 Checking test 107 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3708,14 +3708,14 @@ Checking test 107 hrrr_control_decomp_dyn32_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 203.798955 - 0: The maximum resident set size (KB) = 901684 + 0: The total amount of wall time = 205.604407 + 0: The maximum resident set size (KB) = 894708 Test 107 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/rap_restart_dyn32_phy32 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/rap_control_dyn32_phy32 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/rap_restart_dyn32_phy32 Checking test 108 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3754,14 +3754,14 @@ Checking test 108 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 281.118567 - 0: The maximum resident set size (KB) = 949572 + 0: The total amount of wall time = 282.134447 + 0: The maximum resident set size (KB) = 937568 Test 108 rap_restart_dyn32_phy32 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/hrrr_control_restart_dyn32_phy32 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/hrrr_control_dyn32_phy32 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/hrrr_control_restart_dyn32_phy32 Checking test 109 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3800,14 +3800,14 @@ Checking test 109 hrrr_control_restart_dyn32_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 100.628680 - 0: The maximum resident set size (KB) = 871824 + 0: The total amount of wall time = 100.424095 + 0: The maximum resident set size (KB) = 863532 Test 109 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/rap_control_dyn64_phy32 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/rap_control_dyn64_phy32 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/rap_control_dyn64_phy32 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/rap_control_dyn64_phy32 Checking test 110 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3854,81 +3854,81 @@ Checking test 110 rap_control_dyn64_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 241.968170 - 0: The maximum resident set size (KB) = 970152 + 0: The total amount of wall time = 239.963350 + 0: The maximum resident set size (KB) = 969192 Test 110 rap_control_dyn64_phy32 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/rap_control_debug_dyn32_phy32 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/rap_control_debug_dyn32_phy32 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/rap_control_debug_dyn32_phy32 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/rap_control_debug_dyn32_phy32 Checking test 111 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 271.132718 - 0: The maximum resident set size (KB) = 1061032 + 0: The total amount of wall time = 269.219455 + 0: The maximum resident set size (KB) = 1063180 Test 111 rap_control_debug_dyn32_phy32 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/hrrr_control_debug_dyn32_phy32 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/hrrr_control_debug_dyn32_phy32 Checking test 112 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 275.530967 - 0: The maximum resident set size (KB) = 1059076 + 0: The total amount of wall time = 272.705073 + 0: The maximum resident set size (KB) = 1057400 Test 112 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/rap_control_debug_dyn64_phy32 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/rap_control_dyn64_phy32_debug +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/rap_control_debug_dyn64_phy32 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/rap_control_dyn64_phy32_debug Checking test 113 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 278.624643 - 0: The maximum resident set size (KB) = 1099248 + 0: The total amount of wall time = 277.669633 + 0: The maximum resident set size (KB) = 1100528 Test 113 rap_control_dyn64_phy32_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/hafs_regional_atm -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/hafs_regional_atm +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/hafs_regional_atm +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/hafs_regional_atm Checking test 114 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 243.058819 - 0: The maximum resident set size (KB) = 1047660 + 0: The total amount of wall time = 237.097071 + 0: The maximum resident set size (KB) = 1052288 Test 114 hafs_regional_atm PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/hafs_regional_atm_thompson_gfdlsf +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/hafs_regional_atm_thompson_gfdlsf Checking test 115 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 311.766889 - 0: The maximum resident set size (KB) = 1421872 + 0: The total amount of wall time = 314.990580 + 0: The maximum resident set size (KB) = 1413896 Test 115 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/hafs_regional_atm_ocn -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/hafs_regional_atm_ocn +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/hafs_regional_atm_ocn +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/hafs_regional_atm_ocn Checking test 116 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3937,14 +3937,14 @@ Checking test 116 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 = 377.388305 - 0: The maximum resident set size (KB) = 1221284 + 0: The total amount of wall time = 376.942343 + 0: The maximum resident set size (KB) = 1213576 Test 116 hafs_regional_atm_ocn PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/hafs_regional_atm_wav -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/hafs_regional_atm_wav +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/hafs_regional_atm_wav +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/hafs_regional_atm_wav Checking test 117 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3953,14 +3953,14 @@ Checking test 117 hafs_regional_atm_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 739.948704 - 0: The maximum resident set size (KB) = 1245712 + 0: The total amount of wall time = 738.477349 + 0: The maximum resident set size (KB) = 1255064 Test 117 hafs_regional_atm_wav PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/hafs_regional_atm_ocn_wav -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/hafs_regional_atm_ocn_wav +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/hafs_regional_atm_ocn_wav +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/hafs_regional_atm_ocn_wav Checking test 118 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3971,28 +3971,28 @@ Checking test 118 hafs_regional_atm_ocn_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 842.396614 - 0: The maximum resident set size (KB) = 1271812 + 0: The total amount of wall time = 840.792994 + 0: The maximum resident set size (KB) = 1266024 Test 118 hafs_regional_atm_ocn_wav PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/hafs_regional_1nest_atm -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/hafs_regional_1nest_atm +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/hafs_regional_1nest_atm +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/hafs_regional_1nest_atm Checking test 119 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 = 317.971289 - 0: The maximum resident set size (KB) = 504336 + 0: The total amount of wall time = 321.698163 + 0: The maximum resident set size (KB) = 507836 Test 119 hafs_regional_1nest_atm PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/hafs_regional_telescopic_2nests_atm +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/hafs_regional_telescopic_2nests_atm Checking test 120 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4001,28 +4001,28 @@ Checking test 120 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 = 367.228937 - 0: The maximum resident set size (KB) = 510680 + 0: The total amount of wall time = 365.963295 + 0: The maximum resident set size (KB) = 513036 Test 120 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/hafs_global_1nest_atm -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/hafs_global_1nest_atm +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/hafs_global_1nest_atm +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/hafs_global_1nest_atm Checking test 121 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 = 149.975081 - 0: The maximum resident set size (KB) = 350724 + 0: The total amount of wall time = 146.559809 + 0: The maximum resident set size (KB) = 349892 Test 121 hafs_global_1nest_atm PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/hafs_global_multiple_4nests_atm -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/hafs_global_multiple_4nests_atm +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/hafs_global_multiple_4nests_atm +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/hafs_global_multiple_4nests_atm Checking test 122 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4040,14 +4040,14 @@ Checking test 122 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK - 0: The total amount of wall time = 421.518938 - 0: The maximum resident set size (KB) = 424720 + 0: The total amount of wall time = 418.415930 + 0: The maximum resident set size (KB) = 423012 Test 122 hafs_global_multiple_4nests_atm PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/hafs_regional_specified_moving_1nest_atm +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/hafs_regional_specified_moving_1nest_atm Checking test 123 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4056,28 +4056,28 @@ Checking test 123 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 201.474729 - 0: The maximum resident set size (KB) = 516984 + 0: The total amount of wall time = 204.060118 + 0: The maximum resident set size (KB) = 512172 Test 123 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/hafs_regional_storm_following_1nest_atm +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/hafs_regional_storm_following_1nest_atm Checking test 124 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 = 189.580808 - 0: The maximum resident set size (KB) = 513024 + 0: The total amount of wall time = 191.583431 + 0: The maximum resident set size (KB) = 515436 Test 124 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/hafs_regional_storm_following_1nest_atm_ocn +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/hafs_regional_storm_following_1nest_atm_ocn Checking test 125 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4086,42 +4086,42 @@ Checking test 125 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 = 221.560861 - 0: The maximum resident set size (KB) = 553680 + 0: The total amount of wall time = 222.047459 + 0: The maximum resident set size (KB) = 522360 Test 125 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/hafs_global_storm_following_1nest_atm -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/hafs_global_storm_following_1nest_atm +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/hafs_global_storm_following_1nest_atm +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/hafs_global_storm_following_1nest_atm Checking test 126 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 = 58.384428 - 0: The maximum resident set size (KB) = 362236 + 0: The total amount of wall time = 58.038536 + 0: The maximum resident set size (KB) = 361652 Test 126 hafs_global_storm_following_1nest_atm PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/hafs_regional_storm_following_1nest_atm_ocn_debug +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 127 hafs_regional_storm_following_1nest_atm_ocn_debug results .... Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK - 0: The total amount of wall time = 775.440847 - 0: The maximum resident set size (KB) = 575344 + 0: The total amount of wall time = 760.152460 + 0: The maximum resident set size (KB) = 570816 Test 127 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/hafs_regional_storm_following_1nest_atm_ocn_wav +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 128 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4132,14 +4132,14 @@ Checking test 128 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 = 518.703481 - 0: The maximum resident set size (KB) = 612972 + 0: The total amount of wall time = 518.858373 + 0: The maximum resident set size (KB) = 619488 Test 128 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/hafs_regional_docn -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/hafs_regional_docn +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/hafs_regional_docn +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/hafs_regional_docn Checking test 129 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4147,14 +4147,14 @@ Checking test 129 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 = 355.986546 - 0: The maximum resident set size (KB) = 1229496 + 0: The total amount of wall time = 358.646099 + 0: The maximum resident set size (KB) = 1226568 Test 129 hafs_regional_docn PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/hafs_regional_docn_oisst -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/hafs_regional_docn_oisst +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/hafs_regional_docn_oisst +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/hafs_regional_docn_oisst Checking test 130 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4162,131 +4162,131 @@ Checking test 130 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 = 364.262422 - 0: The maximum resident set size (KB) = 1204464 + 0: The total amount of wall time = 356.332307 + 0: The maximum resident set size (KB) = 1204908 Test 130 hafs_regional_docn_oisst PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/hafs_regional_datm_cdeps -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/hafs_regional_datm_cdeps +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/hafs_regional_datm_cdeps +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/hafs_regional_datm_cdeps Checking test 131 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 = 960.998265 - 0: The maximum resident set size (KB) = 1036556 + 0: The total amount of wall time = 951.664337 + 0: The maximum resident set size (KB) = 1035792 Test 131 hafs_regional_datm_cdeps PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/datm_cdeps_control_cfsr +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/datm_cdeps_control_cfsr +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/datm_cdeps_control_cfsr Checking test 132 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 152.790770 - 0: The maximum resident set size (KB) = 1056364 + 0: The total amount of wall time = 166.160630 + 0: The maximum resident set size (KB) = 1066776 Test 132 datm_cdeps_control_cfsr PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/datm_cdeps_restart_cfsr +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/datm_cdeps_control_cfsr +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/datm_cdeps_restart_cfsr Checking test 133 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 93.126677 - 0: The maximum resident set size (KB) = 1009404 + 0: The total amount of wall time = 89.829454 + 0: The maximum resident set size (KB) = 1006632 Test 133 datm_cdeps_restart_cfsr PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/datm_cdeps_control_gefs -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/datm_cdeps_control_gefs +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/datm_cdeps_control_gefs +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/datm_cdeps_control_gefs Checking test 134 datm_cdeps_control_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 152.168725 - 0: The maximum resident set size (KB) = 968820 + 0: The total amount of wall time = 147.844527 + 0: The maximum resident set size (KB) = 959108 Test 134 datm_cdeps_control_gefs PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/datm_cdeps_iau_gefs -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/datm_cdeps_iau_gefs +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/datm_cdeps_iau_gefs +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/datm_cdeps_iau_gefs Checking test 135 datm_cdeps_iau_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 152.961702 - 0: The maximum resident set size (KB) = 967872 + 0: The total amount of wall time = 150.783175 + 0: The maximum resident set size (KB) = 970052 Test 135 datm_cdeps_iau_gefs PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/datm_cdeps_stochy_gefs -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/datm_cdeps_stochy_gefs +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/datm_cdeps_stochy_gefs +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/datm_cdeps_stochy_gefs Checking test 136 datm_cdeps_stochy_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 148.608916 - 0: The maximum resident set size (KB) = 967376 + 0: The total amount of wall time = 149.671741 + 0: The maximum resident set size (KB) = 972692 Test 136 datm_cdeps_stochy_gefs PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/datm_cdeps_ciceC_cfsr -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/datm_cdeps_ciceC_cfsr +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/datm_cdeps_ciceC_cfsr +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/datm_cdeps_ciceC_cfsr Checking test 137 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 153.744421 - 0: The maximum resident set size (KB) = 1054048 + 0: The total amount of wall time = 154.172993 + 0: The maximum resident set size (KB) = 1061172 Test 137 datm_cdeps_ciceC_cfsr PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/datm_cdeps_bulk_cfsr -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/datm_cdeps_bulk_cfsr +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/datm_cdeps_bulk_cfsr +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/datm_cdeps_bulk_cfsr Checking test 138 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 154.455782 - 0: The maximum resident set size (KB) = 1075492 + 0: The total amount of wall time = 153.996741 + 0: The maximum resident set size (KB) = 1055528 Test 138 datm_cdeps_bulk_cfsr PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/datm_cdeps_bulk_gefs -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/datm_cdeps_bulk_gefs +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/datm_cdeps_bulk_gefs +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/datm_cdeps_bulk_gefs Checking test 139 datm_cdeps_bulk_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 150.567531 - 0: The maximum resident set size (KB) = 967736 + 0: The total amount of wall time = 146.985817 + 0: The maximum resident set size (KB) = 964604 Test 139 datm_cdeps_bulk_gefs PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/datm_cdeps_mx025_cfsr -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/datm_cdeps_mx025_cfsr +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/datm_cdeps_mx025_cfsr +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/datm_cdeps_mx025_cfsr Checking test 140 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4295,14 +4295,14 @@ Checking test 140 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 = 400.495339 - 0: The maximum resident set size (KB) = 877548 + 0: The total amount of wall time = 442.344412 + 0: The maximum resident set size (KB) = 878516 Test 140 datm_cdeps_mx025_cfsr PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/datm_cdeps_mx025_gefs -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/datm_cdeps_mx025_gefs +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/datm_cdeps_mx025_gefs +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/datm_cdeps_mx025_gefs Checking test 141 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4311,77 +4311,77 @@ Checking test 141 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 394.005184 - 0: The maximum resident set size (KB) = 924784 + 0: The total amount of wall time = 413.211736 + 0: The maximum resident set size (KB) = 927556 Test 141 datm_cdeps_mx025_gefs PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/datm_cdeps_multiple_files_cfsr +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/datm_cdeps_control_cfsr +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/datm_cdeps_multiple_files_cfsr Checking test 142 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 = 155.717363 - 0: The maximum resident set size (KB) = 1060548 + 0: The total amount of wall time = 152.178726 + 0: The maximum resident set size (KB) = 1087804 Test 142 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/datm_cdeps_3072x1536_cfsr +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/datm_cdeps_3072x1536_cfsr Checking test 143 datm_cdeps_3072x1536_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 221.521510 - 0: The maximum resident set size (KB) = 2361124 + 0: The total amount of wall time = 217.314997 + 0: The maximum resident set size (KB) = 2307296 Test 143 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/datm_cdeps_gfs -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/datm_cdeps_gfs +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/datm_cdeps_gfs +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/datm_cdeps_gfs Checking test 144 datm_cdeps_gfs results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 222.169043 - 0: The maximum resident set size (KB) = 2367728 + 0: The total amount of wall time = 216.701414 + 0: The maximum resident set size (KB) = 2379064 Test 144 datm_cdeps_gfs PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/datm_cdeps_debug_cfsr -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/datm_cdeps_debug_cfsr +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/datm_cdeps_debug_cfsr +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/datm_cdeps_debug_cfsr Checking test 145 datm_cdeps_debug_cfsr results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 443.299562 - 0: The maximum resident set size (KB) = 1000340 + 0: The total amount of wall time = 440.419577 + 0: The maximum resident set size (KB) = 1004804 Test 145 datm_cdeps_debug_cfsr PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/datm_cdeps_control_cfsr_faster -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/datm_cdeps_control_cfsr_faster +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/datm_cdeps_control_cfsr_faster +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/datm_cdeps_control_cfsr_faster Checking test 146 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 154.687695 - 0: The maximum resident set size (KB) = 1058908 + 0: The total amount of wall time = 150.585335 + 0: The maximum resident set size (KB) = 1055972 Test 146 datm_cdeps_control_cfsr_faster PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/datm_cdeps_lnd_gswp3 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/datm_cdeps_lnd_gswp3 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/datm_cdeps_lnd_gswp3 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/datm_cdeps_lnd_gswp3 Checking test 147 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4390,14 +4390,14 @@ Checking test 147 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 6.539819 - 0: The maximum resident set size (KB) = 255596 + 0: The total amount of wall time = 6.919477 + 0: The maximum resident set size (KB) = 257232 Test 147 datm_cdeps_lnd_gswp3 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/datm_cdeps_lnd_gswp3 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/datm_cdeps_lnd_gswp3_rst +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/datm_cdeps_lnd_gswp3 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/datm_cdeps_lnd_gswp3_rst Checking test 148 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4406,14 +4406,14 @@ Checking test 148 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 13.362678 - 0: The maximum resident set size (KB) = 258656 + 0: The total amount of wall time = 11.794133 + 0: The maximum resident set size (KB) = 266124 Test 148 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/control_p8_atmlnd_sbs -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/control_p8_atmlnd_sbs +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/control_p8_atmlnd_sbs +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/control_p8_atmlnd_sbs Checking test 149 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4498,14 +4498,14 @@ Checking test 149 control_p8_atmlnd_sbs results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 203.754732 - 0: The maximum resident set size (KB) = 1608220 + 0: The total amount of wall time = 202.595517 + 0: The maximum resident set size (KB) = 1600108 Test 149 control_p8_atmlnd_sbs PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/control_atmwav -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/control_atmwav +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/control_atmwav +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/control_atmwav Checking test 150 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4549,14 +4549,14 @@ Checking test 150 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 87.224475 - 0: The maximum resident set size (KB) = 663668 + 0: The total amount of wall time = 86.542068 + 0: The maximum resident set size (KB) = 657180 Test 150 control_atmwav PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/atmaero_control_p8 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/atmaero_control_p8 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/atmaero_control_p8 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/atmaero_control_p8 Checking test 151 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4600,14 +4600,14 @@ Checking test 151 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 224.803551 - 0: The maximum resident set size (KB) = 2979792 + 0: The total amount of wall time = 230.337377 + 0: The maximum resident set size (KB) = 2974968 Test 151 atmaero_control_p8 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/atmaero_control_p8_rad -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/atmaero_control_p8_rad +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/atmaero_control_p8_rad +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/atmaero_control_p8_rad Checking test 152 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4651,14 +4651,14 @@ Checking test 152 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 281.979276 - 0: The maximum resident set size (KB) = 3044776 + 0: The total amount of wall time = 280.391400 + 0: The maximum resident set size (KB) = 3042428 Test 152 atmaero_control_p8_rad PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/atmaero_control_p8_rad_micro -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/atmaero_control_p8_rad_micro +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/atmaero_control_p8_rad_micro +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/atmaero_control_p8_rad_micro Checking test 153 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4702,14 +4702,14 @@ Checking test 153 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 287.626244 - 0: The maximum resident set size (KB) = 3048384 + 0: The total amount of wall time = 286.283146 + 0: The maximum resident set size (KB) = 3053368 Test 153 atmaero_control_p8_rad_micro PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/regional_atmaq -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/regional_atmaq +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/regional_atmaq +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/regional_atmaq Checking test 154 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4725,14 +4725,14 @@ Checking test 154 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 613.116658 - 0: The maximum resident set size (KB) = 1558540 + 0: The total amount of wall time = 632.310397 + 0: The maximum resident set size (KB) = 1425508 Test 154 regional_atmaq PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/regional_atmaq_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/regional_atmaq_debug +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/regional_atmaq_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/regional_atmaq_debug Checking test 155 regional_atmaq_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4746,14 +4746,14 @@ Checking test 155 regional_atmaq_debug results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK - 0: The total amount of wall time = 1325.723742 - 0: The maximum resident set size (KB) = 1517344 + 0: The total amount of wall time = 1229.651313 + 0: The maximum resident set size (KB) = 1389340 Test 155 regional_atmaq_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/regional_atmaq_faster -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/regional_atmaq_faster +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230410/INTEL/regional_atmaq_faster +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_29607/regional_atmaq_faster Checking test 156 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4769,12 +4769,12 @@ Checking test 156 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 573.931765 - 0: The maximum resident set size (KB) = 1563172 + 0: The total amount of wall time = 548.825045 + 0: The maximum resident set size (KB) = 1459552 Test 156 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Tue Apr 4 01:22:09 UTC 2023 -Elapsed time: 01h:11m:07s. Have a nice day! +Mon Apr 10 22:03:34 UTC 2023 +Elapsed time: 01h:10m:55s. Have a nice day! diff --git a/tests/fv3_conf/compile_qsub.IN_cheyenne b/tests/fv3_conf/compile_qsub.IN_cheyenne index c35a0d21b2..401992e2b0 100644 --- a/tests/fv3_conf/compile_qsub.IN_cheyenne +++ b/tests/fv3_conf/compile_qsub.IN_cheyenne @@ -5,7 +5,7 @@ #PBS -A @[ACCNR] #PBS -q @[QUEUE] #PBS -l select=1:ncpus=8:mpiprocs=1 -#PBS -l walltime=00:30:00 +#PBS -l walltime=00:35:00 set -eux diff --git a/tests/fv3_conf/rrfs_warm_run.IN b/tests/fv3_conf/rrfs_warm_run.IN index ddfbeba4a8..966f17dfa6 100644 --- a/tests/fv3_conf/rrfs_warm_run.IN +++ b/tests/fv3_conf/rrfs_warm_run.IN @@ -48,6 +48,8 @@ if [ $IMP_PHYSICS = 8 ]; then cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/CCN_ACTIVATE.BIN . fi +cp ${PATHRT}/parm/postxconfig-NT-fv3lam.txt postxconfig-NT.txt + if [ $DO_RRTMGP = .true. ]; then cp @[INPUTDATA_ROOT]/FV3_input_data_RRTMGP/* . fi diff --git a/tests/parm/aqm/aqm.rc b/tests/parm/aqm/aqm.rc index 94454f96c3..20a2288d18 100644 --- a/tests/parm/aqm/aqm.rc +++ b/tests/parm/aqm/aqm.rc @@ -16,7 +16,7 @@ csqy_data: CSQY_DATA_cb6r3_ae6_aq optics_data: PHOT_OPTICS.dat omi_data: omi_cmaq_2015_361X179.dat -init_concentrations: true +init_concentrations: false run_aerosol: true diff --git a/tests/parm/diag_table/diag_table_hrrr b/tests/parm/diag_table/diag_table_hrrr index ec67502b39..2a7edd84c9 100644 --- a/tests/parm/diag_table/diag_table_hrrr +++ b/tests/parm/diag_table/diag_table_hrrr @@ -332,6 +332,12 @@ "gfs_phys", "skebv_wts", "skebv_wts", "fv3_history", "all", .false., "none", 2 "gfs_phys", "shum_wts", "shum_wts", "fv3_history", "all", .false., "none", 2 + +# Lightning threat indexes +"gfs_sfc", "ltg1_max", "ltg1_max", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "ltg2_max", "ltg2_max", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "ltg3_max", "ltg3_max", "fv3_history2d", "all", .false., "none", 2 + #============================================================================================= # #====> This file can be used with diag_manager/v2.0a (or higher) <==== diff --git a/tests/parm/postxconfig-NT-fv3lam.txt b/tests/parm/postxconfig-NT-fv3lam.txt index db3ccdde66..83972b3ed3 100644 --- a/tests/parm/postxconfig-NT-fv3lam.txt +++ b/tests/parm/postxconfig-NT-fv3lam.txt @@ -1,6 +1,6 @@ 2 -219 -264 +225 +263 PRSLEV 32769 ncep_nco @@ -9341,43 +9341,6 @@ surface ? ? ? -444 -LTNG_ON_SURFACE -lightning -1 -tmpl4_0 -LTNG -NCEP -? -surface -0 -? -0 -? -? -0 -? -0 -? -? -? -0 -0.0 -0 -0.0 -? -0 -0.0 -0 -0.0 -1 -1.0 -0 -0 -0 -? -? -? 581 VIL_ON_ENTIRE_ATMOS entire atmosphere Vertically Integrated Liquid (kg/m-2) @@ -17904,3 +17867,225 @@ surface ? ? ? +704 +GSD_MAX_LTG_THREAT3_ON_ENTIRE_ATMOS +? +1 +tmpl4_8 +LTNG +NCEP +MAX +entire_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +1006 +SDEN_ON_SURFACE +? +1 +tmpl4_0 +SDEN +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +1007 +ICE_PROB_IFI_FLIGHT_LEVEL +? +1 +tmpl4_0 +ICPRB +NCEP +? +spec_alt_above_mean_sea_lvl +1 +1 +60 +5000. 10000. 15000. 20000. 25000. 30000. 35000. 40000. 45000. 50000. 55000. 60000. 65000. 70000. 75000. 80000. 85000. 90000. 95000. 100000. 105000. 110000. 115000. 120000. 125000. 130000. 135000. 140000. 145000. 150000. 155000. 160000. 165000. 170000. 175000. 180000. 185000. 190000. 195000. 200000. 205000. 210000. 215000. 220000. 225000. 230000. 235000. 240000. 245000. 250000. 255000. 260000. 265000. 270000. 275000. 280000. 285000. 290000. 295000. 300000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +1008 +SLD_IFI_FLIGHT_LEVEL +? +1 +tmpl4_0 +SIPD +NCEP +? +spec_alt_above_mean_sea_lvl +1 +1 +60 +5000. 10000. 15000. 20000. 25000. 30000. 35000. 40000. 45000. 50000. 55000. 60000. 65000. 70000. 75000. 80000. 85000. 90000. 95000. 100000. 105000. 110000. 115000. 120000. 125000. 130000. 135000. 140000. 145000. 150000. 155000. 160000. 165000. 170000. 175000. 180000. 185000. 190000. 195000. 200000. 205000. 210000. 215000. 220000. 225000. 230000. 235000. 240000. 245000. 250000. 255000. 260000. 265000. 270000. 275000. 280000. 285000. 290000. 295000. 300000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +1009 +ICE_SEV_CAT_IFI_FLIGHT_LEVEL +? +1 +tmpl4_0 +ICSEV +NCEP +? +spec_alt_above_mean_sea_lvl +1 +1 +60 +5000. 10000. 15000. 20000. 25000. 30000. 35000. 40000. 45000. 50000. 55000. 60000. 65000. 70000. 75000. 80000. 85000. 90000. 95000. 100000. 105000. 110000. 115000. 120000. 125000. 130000. 135000. 140000. 145000. 150000. 155000. 160000. 165000. 170000. 175000. 180000. 185000. 190000. 195000. 200000. 205000. 210000. 215000. 220000. 225000. 230000. 235000. 240000. 245000. 250000. 255000. 260000. 265000. 270000. 275000. 280000. 285000. 290000. 295000. 300000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +1010 +WMO_ICE_SEV_CAT_IFI_FLIGHT_LEVEL +? +1 +tmpl4_0 +ICESEV +? +? +spec_alt_above_mean_sea_lvl +1 +1 +60 +5000. 10000. 15000. 20000. 25000. 30000. 35000. 40000. 45000. 50000. 55000. 60000. 65000. 70000. 75000. 80000. 85000. 90000. 95000. 100000. 105000. 110000. 115000. 120000. 125000. 130000. 135000. 140000. 145000. 150000. 155000. 160000. 165000. 170000. 175000. 180000. 185000. 190000. 195000. 200000. 205000. 210000. 215000. 220000. 225000. 230000. 235000. 240000. 245000. 250000. 255000. 260000. 265000. 270000. 275000. 280000. 285000. 290000. 295000. 300000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? diff --git a/tests/parm/rrfs_conus13km_hrrr.nml.IN b/tests/parm/rrfs_conus13km_hrrr.nml.IN index d8f951573c..5389240612 100644 --- a/tests/parm/rrfs_conus13km_hrrr.nml.IN +++ b/tests/parm/rrfs_conus13km_hrrr.nml.IN @@ -138,6 +138,7 @@ &gfs_physics_nml sfclay_compute_flux = @[SFCLAY_COMPUTE_FLUX] + lightning_threat = .true. fh_dfi_radar = @[FH_DFI_RADAR] bl_mynn_edmf = 1 bl_mynn_edmf_mom = 1 diff --git a/tests/rt.conf b/tests/rt.conf index 22315c2a82..48e3c569aa 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -80,6 +80,12 @@ RUN | regional_netcdf_parallel RUN | regional_2dwrtdecomp | | | RUN | regional_wofs | | fv3 | +COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DREQUIRE_IFI=ON | + acorn.intel | fv3 | +RUN | regional_ifi_control | + acorn.intel | fv3 | +RUN | regional_ifi_decomp | + acorn.intel | | +RUN | regional_ifi_2threads | + acorn.intel | | + + COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON | | fv3 | RUN | rap_control | | fv3 | @@ -282,10 +288,10 @@ RUN | atmaero_control_p8_rad_micro # ATM-CMAQ tests ################################################################################################################################################################################### -COMPILE | -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 | | fv3 | +COMPILE | -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON | | fv3 | RUN | regional_atmaq | | fv3 | -COMPILE | -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON | | fv3 | +COMPILE | -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON | | fv3 | RUN | regional_atmaq_debug | - jet.intel gaea.intel cheyenne.intel | fv3 | -COMPILE | -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON | | fv3 | +COMPILE | -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON | | fv3 | RUN | regional_atmaq_faster | | fv3 | diff --git a/tests/rt.ncar.sh b/tests/rt.ncar.sh index e909878a1c..e015216ec3 100755 --- a/tests/rt.ncar.sh +++ b/tests/rt.ncar.sh @@ -29,6 +29,7 @@ usage() { [[ $# -eq 0 ]] && usage rt_single() { + rm -f $RT_SINGLE_CONF local compile_line='' local run_line='' while read -r line || [ "$line" ]; do @@ -50,20 +51,20 @@ rt_single() { if [[ $line =~ RUN ]]; then tmp_test=$(echo $line | cut -d'|' -f2 | sed -e 's/^ *//' -e 's/ *$//') if [[ $SINGLE_NAME == $tmp_test && $compile_line != '' ]]; then - echo $compile_line >$TESTS_FILE + echo $compile_line > $RT_SINGLE_CONF dep_test=$(echo $line | grep -w $tmp_test | cut -d'|' -f5 | sed -e 's/^ *//' -e 's/ *$//') if [[ $dep_test != '' ]]; then dep_line=$(cat rt.conf | grep -w "$dep_test" | grep -v "$tmp_test") dep_line="${dep_line#"${dep_line%%[![:space:]]*}"}" - echo $dep_line >>$TESTS_FILE + echo $dep_line >> $RT_SINGLE_CONF fi - echo $line >>$TESTS_FILE + echo $line >> $RT_SINGLE_CONF break fi fi - done <'rt.conf' + done < $TESTS_FILE - if [[ ! -f $TESTS_FILE ]]; then + if [[ ! -f $RT_SINGLE_CONF ]]; then echo "$SINGLE_NAME does not exist or cannot be run on $MACHINE_ID" exit 1 fi @@ -119,6 +120,8 @@ else exit 1 fi +readonly RT_SINGLE_CONF='rt_single.conf' + # Default compiler "intel" export RT_COMPILER=${RT_COMPILER:-intel} @@ -136,7 +139,7 @@ if [[ $MACHINE_ID = wcoss2.* ]]; then #ROCOTOCOMPLETE=$(which rocotocomplete) #ROCOTO_SCHEDULER=lsf - module load ecflow/5.6.0.6 + module load ecflow/5.6.0.13 module load gcc/10.3.0 python/3.8.6 ECFLOW_START=${ECF_ROOT}/scripts/server_check.sh export ECF_OUTPUTDIR=${PATHRT}/ecf_outputdir @@ -159,7 +162,7 @@ if [[ $MACHINE_ID = wcoss2.* ]]; then elif [[ $MACHINE_ID = acorn.* ]]; then - module load ecflow/5.6.0.6 + module load ecflow/5.6.0.13 module load gcc/10.3.0 python/3.8.6 ECFLOW_START=${ECF_ROOT}/scripts/server_check.sh export ECF_OUTPUTDIR=${PATHRT}/ecf_outputdir @@ -270,7 +273,7 @@ elif [[ $MACHINE_ID = jet.* ]]; then COMPILE_QUEUE=batch ACCNR="${ACCNR:-h-nems}" PARTITION=xjet - DISKNM=/lfs4/HFIP/h-nems/emc.nemspara/RT + DISKNM=/mnt/lfs4/HFIP/hfv3gfs/role.epic/RT dprefix=${dprefix:-/lfs4/HFIP/$ACCNR/$USER} STMP=${STMP:-$dprefix/RT_BASELINE} PTMP=${PTMP:-$dprefix/RT_RUNDIRS} @@ -401,8 +404,6 @@ while getopts ":cl:mn:dwkreh" opt; do ;; n) SINGLE_NAME=$OPTARG - TESTS_FILE='rt.conf.single' - rm -f $TESTS_FILE ;; d) export delete_rundir=true @@ -438,13 +439,14 @@ done if [[ $SINGLE_NAME != '' ]]; then rt_single + TESTS_FILE=$RT_SINGLE_CONF fi if [[ $TESTS_FILE =~ '35d' ]] || [[ $TESTS_FILE =~ 'weekly' ]]; then TEST_35D=true fi -BL_DATE=20230403 +BL_DATE=20230410 RTPWD=${RTPWD:-$DISKNM/NCAR/main-${BL_DATE}/${RT_COMPILER^^}} @@ -819,11 +821,11 @@ else echo ; echo REGRESSION TEST WAS SUCCESSFUL (echo ; echo REGRESSION TEST WAS SUCCESSFUL) >> ${REGRESSIONTEST_LOG} - rm -f fv3_*.x fv3_*.exe modules.fv3_* keep_tests.tmp + rm -f fv3_*.x fv3_*.exe modules.fv3_* modulefiles/modules.fv3_* keep_tests.tmp [[ ${KEEP_RUNDIR} == false ]] && rm -rf ${RUNDIR_ROOT} [[ ${ROCOTO} == true ]] && rm -f ${ROCOTO_XML} ${ROCOTO_DB} ${ROCOTO_STATE} *_lock.db [[ ${TEST_35D} == true ]] && rm -f tests/cpld_bmark*_20* - [[ ${SINGLE_NAME} != '' ]] && rm -f rt.conf.single + [[ ${SINGLE_NAME} != '' ]] && rm -f $RT_SINGLE_CONF fi date >> ${REGRESSIONTEST_LOG} diff --git a/tests/rt.sh b/tests/rt.sh index 1fb074df5f..5a8babff54 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -446,7 +446,7 @@ if [[ $TESTS_FILE =~ '35d' ]] || [[ $TESTS_FILE =~ 'weekly' ]]; then fi -BL_DATE=20230308 +BL_DATE=20230321 RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-${BL_DATE}/${RT_COMPILER^^}} diff --git a/tests/tests/regional_ifi_2threads b/tests/tests/regional_ifi_2threads new file mode 100644 index 0000000000..743707a55c --- /dev/null +++ b/tests/tests/regional_ifi_2threads @@ -0,0 +1,45 @@ +############################################################################### +# +# FV3 regional threading test +# +############################################################################### + +export TEST_DESCR="Compare FV3 regional threading results with previous trunk version" + +export CNTL_DIR=regional_ifi_control + +export LIST_FILES="dynf000.nc \ + dynf006.nc \ + phyf000.nc \ + phyf006.nc \ + PRSLEV.GrbF00 \ + PRSLEV.GrbF06 \ + NATLEV.GrbF00 \ + NATLEV.GrbF06" + +export_fv3 + +export FV3_RUN=regional_run.IN + +export OZ_PHYS_OLD=.false. +export OZ_PHYS_NEW=.true. +export H2O_PHYS=.true. +export HYBEDMF=.false. +export WRITE_DOPOST=.true. +export POSTAPP='lam' + +export CCPP_SUITE=FV3_GFS_v15_thompson_mynn_lam3km +export INPUT_NML=regional.nml.IN +export MODEL_CONFIGURE=model_configure_regional.IN +export DIAG_TABLE=diag_table_lam +export FIELD_TABLE=field_table_regional + +export WLCLK=15 +export FHMAX=6 +export INPES=10 +export JNPES=11 +export atm_omp_num_threads=2 +export OUTPUT_FH="3 -1" +WRITE_GROUP=1 +WRTTASK_PER_GROUP=10 +NTILES=1 diff --git a/tests/tests/regional_ifi_control b/tests/tests/regional_ifi_control new file mode 100644 index 0000000000..85ab5ae6a9 --- /dev/null +++ b/tests/tests/regional_ifi_control @@ -0,0 +1,45 @@ +############################################################################### +# +# FV3 regional control with IFI (hi-res 3km, small domain) test +# +############################################################################### + +export TEST_DESCR="Compare FV3 regional control results with IFI against previous trunk version" + +export CNTL_DIR=regional_ifi_control + +export LIST_FILES="dynf000.nc \ + dynf006.nc \ + phyf000.nc \ + phyf006.nc \ + PRSLEV.GrbF00 \ + PRSLEV.GrbF06 \ + NATLEV.GrbF00 \ + NATLEV.GrbF06" + +export_fv3 + +export FV3_RUN=regional_run.IN + +export OZ_PHYS_OLD=.false. +export OZ_PHYS_NEW=.true. +export H2O_PHYS=.true. +export HYBEDMF=.false. +export RESTART_INTERVAL="3 -1" +export WRITE_DOPOST=.true. +export POSTAPP='lam' + +export CCPP_SUITE=FV3_GFS_v15_thompson_mynn_lam3km +export INPUT_NML=regional.nml.IN +export MODEL_CONFIGURE=model_configure_regional.IN +export DIAG_TABLE=diag_table_lam +export FIELD_TABLE=field_table_regional + +export WLCLK=15 +export FHMAX=6 +export INPES=10 +export JNPES=11 +export OUTPUT_FH="3 -1" +WRITE_GROUP=1 +WRTTASK_PER_GROUP=10 +NTILES=1 diff --git a/tests/tests/regional_ifi_decomp b/tests/tests/regional_ifi_decomp new file mode 100644 index 0000000000..4513f4618c --- /dev/null +++ b/tests/tests/regional_ifi_decomp @@ -0,0 +1,45 @@ +############################################################################### +# +# FV3 regional + IFI with different MPI decomposition (hi-res 3km, small domain) test +# +############################################################################### + +export TEST_DESCR="Compare FV3 regional with IFI; different decomposition results with previous trunk version" + +export CNTL_DIR=regional_ifi_control + +export LIST_FILES="dynf000.nc \ + dynf006.nc \ + phyf000.nc \ + phyf006.nc \ + PRSLEV.GrbF00 \ + PRSLEV.GrbF06 \ + NATLEV.GrbF00 \ + NATLEV.GrbF06" + +export_fv3 + +export FV3_RUN=regional_run.IN + +export OZ_PHYS_OLD=.false. +export OZ_PHYS_NEW=.true. +export H2O_PHYS=.true. +export HYBEDMF=.false. +export RESTART_INTERVAL="0" +export WRITE_DOPOST=.true. +export POSTAPP='lam' + +export CCPP_SUITE=FV3_GFS_v15_thompson_mynn_lam3km +export INPUT_NML=regional.nml.IN +export MODEL_CONFIGURE=model_configure_regional.IN +export DIAG_TABLE=diag_table_lam +export FIELD_TABLE=field_table_regional + +export WLCLK=15 +export FHMAX=6 +export INPES=11 +export JNPES=10 +export OUTPUT_FH="3 -1" +WRITE_GROUP=1 +WRTTASK_PER_GROUP=10 +NTILES=1