diff --git a/.gitmodules b/.gitmodules index a963b019d8..5ece87098e 100644 --- a/.gitmodules +++ b/.gitmodules @@ -38,3 +38,7 @@ path = GOCART url = https://github.com/GEOS-ESM/GOCART branch = develop +[submodule "AQM"] + path = AQM + url = https://github.com/NOAA-EMC/AQM + branch = develop diff --git a/AQM b/AQM new file mode 160000 index 0000000000..79ff7a9899 --- /dev/null +++ b/AQM @@ -0,0 +1 @@ +Subproject commit 79ff7a9899462a674526c1abaf7044cb2963786d diff --git a/CMakeLists.txt b/CMakeLists.txt index e099c170d7..6a4a986f6f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -16,7 +16,7 @@ list(APPEND CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/CMakeModules/Modules) ############################################################################### # Valid applications and choices -list(APPEND VALID_APPS ATM ATMAERO ATMW S2S S2SA S2SW S2SWA HAFS HAFSW HAFS-ALL NG-GODAS) +list(APPEND VALID_APPS ATM ATMAERO ATMAQ ATMW S2S S2SA S2SW S2SWA HAFS HAFSW HAFS-ALL NG-GODAS) set(APP NONE CACHE BOOL "Application Name") if(NOT (APP IN_LIST VALID_APPS)) message(FATAL_ERROR "${APP} is not a valid application.\nValid Applications are: ${VALID_APPS}") @@ -24,6 +24,7 @@ endif() set(FMS OFF CACHE BOOL "Enable FMS") set(FV3 OFF CACHE BOOL "Enable FV3") +set(AQM OFF CACHE BOOL "Enable AQM") set(UFS_GOCART OFF CACHE BOOL "Enable GOCART") set(MOM6 OFF CACHE BOOL "Enable MOM6") set(HYCOM OFF CACHE BOOL "Enable HYCOM") @@ -40,6 +41,7 @@ include(cmake/configure_apps.cmake) message("") message("FMS .............. ${FMS}") message("FV3 .............. ${FV3}") +message("AQM .............. ${AQM}") message("GOCART ........... ${UFS_GOCART}") message("MOM6 ............. ${MOM6}") message("HYCOM ............ ${HYCOM}") @@ -144,6 +146,13 @@ if(FV3) add_subdirectory(FV3) endif() +############################################################################### +### AQM +############################################################################### +if(AQM) + add_subdirectory(AQM) +endif() + ############################################################################### ### GOCART ############################################################################### @@ -203,6 +212,12 @@ if(JEDI_DRIVER) list(APPEND _ufs_defs_private JEDI_DRIVER=ON) endif() +if(AQM) + add_dependencies(ufs aqm) + list(APPEND _ufs_defs_private FRONT_AQM=aqm) + list(APPEND _ufs_libs_public aqm) +endif() + if(UFS_GOCART) add_dependencies(ufs UFS_Aerosols) list(APPEND _ufs_defs_private FRONT_GOCART=Aerosol_Cap) diff --git a/FV3 b/FV3 index 241db75bcd..8a58e19da1 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 241db75bcd1f968d9f8ba2827304bfa3a6b8eb8b +Subproject commit 8a58e19da17ec02569b833536597f38aac937d66 diff --git a/MOM6-interface/MOM6 b/MOM6-interface/MOM6 index 8ecf333ca1..e532d86253 160000 --- a/MOM6-interface/MOM6 +++ b/MOM6-interface/MOM6 @@ -1 +1 @@ -Subproject commit 8ecf333ca14672d1c1c32807b1c1c41c4fa670b7 +Subproject commit e532d86253a86d9ae23da8199ef27653339f0768 diff --git a/README.md b/README.md index 331cba1d45..311fec3b65 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ # ufs-weather-model -This is the UFS weather model source code. +This is the UFS weather model source code # Where to find information diff --git a/cmake/configure_apps.cmake b/cmake/configure_apps.cmake index 4358d06b70..1d433c4f3b 100644 --- a/cmake/configure_apps.cmake +++ b/cmake/configure_apps.cmake @@ -13,13 +13,16 @@ ############################################################################### ### Configure Application Components ############################################################################### -if(APP MATCHES "^(ATM|ATMW)$") +if(APP MATCHES "^(ATM|ATMW|ATMAQ)$") set(FMS ON CACHE BOOL "Enable FMS" FORCE) set(FV3 ON CACHE BOOL "Enable FV3" FORCE) set(STOCH_PHYS ON CACHE BOOL "Enable Stochastic Physics" FORCE) if(APP MATCHES "ATMW") set(WW3 ON CACHE BOOL "Enable WAVEWATCH III" FORCE) message("Configuring UFS app in Atmosphere with Waves mode") + elseif(APP MATCHES "ATMAQ") + set(AQM ON CACHE BOOL "Enable AQM" FORCE) + message("Configuring UFS app in Atmosphere with Air Quality mode") else() message("Configuring UFS app in Atmosphere Only mode") endif() diff --git a/driver/EARTH_GRID_COMP.F90 b/driver/EARTH_GRID_COMP.F90 index 07169e6b65..c6ca6b22f8 100644 --- a/driver/EARTH_GRID_COMP.F90 +++ b/driver/EARTH_GRID_COMP.F90 @@ -80,6 +80,10 @@ MODULE module_EARTH_GRID_COMP ! - Handle build time IPM options: #ifdef FRONT_IPE use FRONT_IPE, only: IPE_SS => SetServices +#endif + ! - Handle build time AQM options: +#ifdef FRONT_AQM + use FRONT_AQM, only: AQM_SS => SetServices #endif ! - Handle build time GOCART options: #ifdef FRONT_GOCART @@ -489,6 +493,23 @@ subroutine SetModelServices(driver, rc) found_comp = .true. end if #endif +#ifdef FRONT_AQM + if (trim(model) == "aqm") then + !TODO: Remove bail code and pass info and SetVM to DriverAddComp + !TODO: once component supports threading. + if (ompNumThreads > 1) then + write (msg, *) "ESMF-aware threading NOT implemented for model: "//& + trim(model) + call ESMF_LogSetError(ESMF_RC_NOT_VALID, msg=msg, line=__LINE__, & + file=__FILE__, rcToReturn=rc) + return ! bail out + endif + call NUOPC_DriverAddComp(driver, trim(prefix), AQM_SS, & + petList=petList, comp=comp, rc=rc) + if (ChkErr(rc,__LINE__,u_FILE_u)) return + found_comp = .true. + end if +#endif #ifdef FRONT_GOCART if (trim(model) == "gocart") then !TODO: Remove bail code and pass info and SetVM to DriverAddComp diff --git a/tests/RegressionTests_cheyenne.gnu.log b/tests/RegressionTests_cheyenne.gnu.log index d1921d772e..73d0b99969 100755 --- a/tests/RegressionTests_cheyenne.gnu.log +++ b/tests/RegressionTests_cheyenne.gnu.log @@ -1,16 +1,16 @@ -Fri Apr 1 12:58:22 MDT 2022 +Mon Apr 4 09:46:41 MDT 2022 Start Regression test -Compile 001 elapsed time 409 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_thompson,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 002 elapsed time 390 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 003 elapsed time 798 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 004 elapsed time 192 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 504 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 006 elapsed time 275 seconds. -DAPP=S2S -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 007 elapsed time 295 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 001 elapsed time 405 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_thompson,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 002 elapsed time 392 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 003 elapsed time 790 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 004 elapsed time 190 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 500 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 006 elapsed time 271 seconds. -DAPP=S2S -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 007 elapsed time 288 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/GNU/control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29534/control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36745/control Checking test 001 control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -57,14 +57,14 @@ Checking test 001 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 270.187406 -0:The maximum resident set size (KB) = 433428 +0:The total amount of wall time = 273.961691 +0:The maximum resident set size (KB) = 433444 Test 001 control PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/GNU/control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29534/control_restart +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36745/control_restart Checking test 002 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -103,14 +103,14 @@ Checking test 002 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 137.189552 -0:The maximum resident set size (KB) = 182956 +0:The total amount of wall time = 137.516559 +0:The maximum resident set size (KB) = 182572 Test 002 control_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/GNU/control_c48 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29534/control_c48 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36745/control_c48 Checking test 003 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -149,14 +149,14 @@ Checking test 003 control_c48 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 818.105566 -0:The maximum resident set size (KB) = 669484 +0:The total amount of wall time = 815.166712 +0:The maximum resident set size (KB) = 669620 Test 003 control_c48 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/GNU/control_stochy -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29534/control_stochy +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36745/control_stochy Checking test 004 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -167,14 +167,14 @@ Checking test 004 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 174.567748 -0:The maximum resident set size (KB) = 427716 +0:The total amount of wall time = 175.303774 +0:The maximum resident set size (KB) = 427676 Test 004 control_stochy PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/GNU/control_flake -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29534/control_flake +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36745/control_flake Checking test 005 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -185,14 +185,14 @@ Checking test 005 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 327.435571 -0:The maximum resident set size (KB) = 485568 +0:The total amount of wall time = 336.933250 +0:The maximum resident set size (KB) = 485640 Test 005 control_flake PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/GNU/control_rrtmgp -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29534/control_rrtmgp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36745/control_rrtmgp Checking test 006 control_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -203,14 +203,14 @@ Checking test 006 control_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 325.354943 +0:The total amount of wall time = 339.930557 0:The maximum resident set size (KB) = 529736 Test 006 control_rrtmgp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/GNU/control_thompson -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29534/control_thompson +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36745/control_thompson Checking test 007 control_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -221,14 +221,14 @@ Checking test 007 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 357.530663 -0:The maximum resident set size (KB) = 795488 +0:The total amount of wall time = 356.031261 +0:The maximum resident set size (KB) = 795136 Test 007 control_thompson PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/GNU/control_thompson_no_aero -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29534/control_thompson_no_aero +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36745/control_thompson_no_aero Checking test 008 control_thompson_no_aero results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -239,14 +239,14 @@ Checking test 008 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 342.347920 -0:The maximum resident set size (KB) = 788948 +0:The total amount of wall time = 347.859419 +0:The maximum resident set size (KB) = 789000 Test 008 control_thompson_no_aero PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/GNU/control_ras -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29534/control_ras +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36745/control_ras Checking test 009 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -257,14 +257,14 @@ Checking test 009 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 285.965342 -0:The maximum resident set size (KB) = 446128 +0:The total amount of wall time = 290.427190 +0:The maximum resident set size (KB) = 446184 Test 009 control_ras PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/GNU/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29534/control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36745/control_p8 Checking test 010 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -311,14 +311,14 @@ Checking test 010 control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 310.358868 -0:The maximum resident set size (KB) = 817908 +0:The total amount of wall time = 300.079615 +0:The maximum resident set size (KB) = 817964 Test 010 control_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/GNU/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29534/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36745/rap_control Checking test 011 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -365,14 +365,14 @@ Checking test 011 rap_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 685.822063 -0:The maximum resident set size (KB) = 773840 +0:The total amount of wall time = 691.152675 +0:The maximum resident set size (KB) = 773456 Test 011 rap_control PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/GNU/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29534/rap_2threads +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36745/rap_2threads Checking test 012 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -419,14 +419,14 @@ Checking test 012 rap_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 1195.442121 -0:The maximum resident set size (KB) = 840196 +0:The total amount of wall time = 1212.205326 +0:The maximum resident set size (KB) = 840556 Test 012 rap_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/GNU/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29534/rap_restart +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36745/rap_restart Checking test 013 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -465,14 +465,14 @@ Checking test 013 rap_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 345.075135 -0:The maximum resident set size (KB) = 521428 +0:The total amount of wall time = 341.276493 +0:The maximum resident set size (KB) = 521056 Test 013 rap_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/GNU/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29534/rap_sfcdiff +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36745/rap_sfcdiff Checking test 014 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -519,14 +519,14 @@ Checking test 014 rap_sfcdiff results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 685.104650 -0:The maximum resident set size (KB) = 773652 +0:The total amount of wall time = 689.085890 +0:The maximum resident set size (KB) = 773368 Test 014 rap_sfcdiff PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/GNU/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29534/rap_sfcdiff_restart +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36745/rap_sfcdiff_restart Checking test 015 rap_sfcdiff_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -565,14 +565,14 @@ Checking test 015 rap_sfcdiff_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 344.662471 -0:The maximum resident set size (KB) = 520844 +0:The total amount of wall time = 344.395763 +0:The maximum resident set size (KB) = 520924 Test 015 rap_sfcdiff_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/GNU/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29534/hrrr_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36745/hrrr_control Checking test 016 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -619,14 +619,14 @@ Checking test 016 hrrr_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 662.124884 -0:The maximum resident set size (KB) = 771708 +0:The total amount of wall time = 671.368274 +0:The maximum resident set size (KB) = 771320 Test 016 hrrr_control PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/GNU/rrfs_v1beta -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29534/rrfs_v1beta +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36745/rrfs_v1beta Checking test 017 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -673,14 +673,14 @@ Checking test 017 rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 678.998498 -0:The maximum resident set size (KB) = 771324 +0:The total amount of wall time = 678.010618 +0:The maximum resident set size (KB) = 770928 Test 017 rrfs_v1beta PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/GNU/rrfs_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29534/rrfs_conus13km_hrrr_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36745/rrfs_conus13km_hrrr_warm Checking test 018 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -689,14 +689,14 @@ Checking test 018 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 317.738725 -0:The maximum resident set size (KB) = 592248 +0:The total amount of wall time = 319.413917 +0:The maximum resident set size (KB) = 592068 Test 018 rrfs_conus13km_hrrr_warm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/GNU/rrfs_conus13km_radar_tten_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29534/rrfs_conus13km_radar_tten_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36745/rrfs_conus13km_radar_tten_warm Checking test 019 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -705,250 +705,250 @@ Checking test 019 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 320.815283 -0:The maximum resident set size (KB) = 594796 +0:The total amount of wall time = 320.969239 +0:The maximum resident set size (KB) = 594992 Test 019 rrfs_conus13km_radar_tten_warm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/GNU/control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29534/control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36745/control_debug Checking test 020 control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 81.180091 -0:The maximum resident set size (KB) = 424280 +0:The total amount of wall time = 79.937518 +0:The maximum resident set size (KB) = 424008 Test 020 control_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/GNU/control_diag_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29534/control_diag_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36745/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 = 86.788889 -0:The maximum resident set size (KB) = 481404 +0:The total amount of wall time = 85.823992 +0:The maximum resident set size (KB) = 481220 Test 021 control_diag_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/GNU/fv3_regional_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29534/regional_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36745/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 = 131.171158 -0:The maximum resident set size (KB) = 535200 +0:The total amount of wall time = 131.028542 +0:The maximum resident set size (KB) = 535372 Test 022 regional_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/GNU/rap_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29534/rap_control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36745/rap_control_debug Checking test 023 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 145.317766 -0:The maximum resident set size (KB) = 795848 +0:The total amount of wall time = 144.047761 +0:The maximum resident set size (KB) = 795912 Test 023 rap_control_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/GNU/rap_diag_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29534/rap_diag_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36745/rap_diag_debug Checking test 024 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 153.613878 -0:The maximum resident set size (KB) = 878688 +0:The total amount of wall time = 152.122098 +0:The maximum resident set size (KB) = 878372 Test 024 rap_diag_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/GNU/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29534/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36745/rap_noah_sfcdiff_cires_ugwp_debug Checking test 025 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 236.856857 -0:The maximum resident set size (KB) = 794484 +0:The total amount of wall time = 233.178952 +0:The maximum resident set size (KB) = 794616 Test 025 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/GNU/rap_progcld_thompson_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29534/rap_progcld_thompson_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36745/rap_progcld_thompson_debug Checking test 026 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 145.614461 -0:The maximum resident set size (KB) = 795896 +0:The total amount of wall time = 144.448192 +0:The maximum resident set size (KB) = 796012 Test 026 rap_progcld_thompson_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/GNU/rrfs_v1beta_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29534/rrfs_v1beta_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36745/rrfs_v1beta_debug Checking test 027 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 144.315788 -0:The maximum resident set size (KB) = 790616 +0:The total amount of wall time = 143.675632 +0:The maximum resident set size (KB) = 790808 Test 027 rrfs_v1beta_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/GNU/control_thompson_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29534/control_thompson_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36745/control_thompson_debug Checking test 028 control_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 94.022162 -0:The maximum resident set size (KB) = 782300 +0:The total amount of wall time = 93.365161 +0:The maximum resident set size (KB) = 782016 Test 028 control_thompson_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/GNU/control_thompson_no_aero_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29534/control_thompson_no_aero_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36745/control_thompson_no_aero_debug Checking test 029 control_thompson_no_aero_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 91.011050 -0:The maximum resident set size (KB) = 777672 +0:The total amount of wall time = 89.822754 +0:The maximum resident set size (KB) = 777332 Test 029 control_thompson_no_aero_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/GNU/control_thompson_debug_extdiag -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29534/control_thompson_extdiag_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36745/control_thompson_extdiag_debug Checking test 030 control_thompson_extdiag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 101.830858 -0:The maximum resident set size (KB) = 823928 +0:The total amount of wall time = 100.972197 +0:The maximum resident set size (KB) = 823628 Test 030 control_thompson_extdiag_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/GNU/control_thompson_progcld_thompson_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29534/control_thompson_progcld_thompson_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36745/control_thompson_progcld_thompson_debug Checking test 031 control_thompson_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 94.071369 -0:The maximum resident set size (KB) = 782288 +0:The total amount of wall time = 93.647792 +0:The maximum resident set size (KB) = 782076 Test 031 control_thompson_progcld_thompson_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/GNU/control_rrtmgp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29534/control_rrtmgp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36745/control_rrtmgp_debug Checking test 032 control_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 86.747465 -0:The maximum resident set size (KB) = 519276 +0:The total amount of wall time = 88.691201 +0:The maximum resident set size (KB) = 519304 Test 032 control_rrtmgp_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/GNU/control_ras_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29534/control_ras_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36745/control_ras_debug Checking test 033 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 83.536880 -0:The maximum resident set size (KB) = 434148 +0:The total amount of wall time = 83.201344 +0:The maximum resident set size (KB) = 433872 Test 033 control_ras_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/GNU/control_stochy_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29534/control_stochy_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36745/control_stochy_debug Checking test 034 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 90.898744 -0:The maximum resident set size (KB) = 428260 +0:The total amount of wall time = 90.258632 +0:The maximum resident set size (KB) = 427804 Test 034 control_stochy_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/GNU/control_debug_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29534/control_debug_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36745/control_debug_p8 Checking test 035 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 91.569868 -0:The maximum resident set size (KB) = 807564 +0:The total amount of wall time = 89.753914 +0:The maximum resident set size (KB) = 808420 Test 035 control_debug_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/GNU/control_wam_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29534/control_wam_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36745/control_wam_debug Checking test 036 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -0:The total amount of wall time = 145.864127 -0:The maximum resident set size (KB) = 170392 +0:The total amount of wall time = 144.338371 +0:The maximum resident set size (KB) = 170400 -Test 036 control_wam_debug PASS Tries: 2 +Test 036 control_wam_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/GNU/cpld_control_c96_noaero_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29534/cpld_control_c96_noaero_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36745/cpld_control_c96_noaero_p8 Checking test 037 cpld_control_c96_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1010,14 +1010,14 @@ Checking test 037 cpld_control_c96_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 395.586277 -0:The maximum resident set size (KB) = 842404 +0:The total amount of wall time = 383.103508 +0:The maximum resident set size (KB) = 841412 Test 037 cpld_control_c96_noaero_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/GNU/cpld_debug_noaero_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29534/cpld_debug_noaero_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36745/cpld_debug_noaero_p8 Checking test 038 cpld_debug_noaero_p8 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1067,25 +1067,25 @@ Checking test 038 cpld_debug_noaero_p8 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK -0:The total amount of wall time = 350.172081 -0:The maximum resident set size (KB) = 859804 +0:The total amount of wall time = 342.765289 +0:The maximum resident set size (KB) = 858584 Test 038 cpld_debug_noaero_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/GNU/datm_cdeps_control_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29534/datm_cdeps_control_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36745/datm_cdeps_control_cfsr Checking test 039 datm_cdeps_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 173.487917 -0:The maximum resident set size (KB) = 642636 +0:The total amount of wall time = 173.440050 +0:The maximum resident set size (KB) = 647064 Test 039 datm_cdeps_control_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Fri Apr 1 13:27:52 MDT 2022 -Elapsed time: 00h:29m:31s. Have a nice day! +Mon Apr 4 10:16:39 MDT 2022 +Elapsed time: 00h:29m:59s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.intel.log b/tests/RegressionTests_cheyenne.intel.log index e2eea59c3c..03c764b0c5 100755 --- a/tests/RegressionTests_cheyenne.intel.log +++ b/tests/RegressionTests_cheyenne.intel.log @@ -1,24 +1,24 @@ -Fri Apr 1 11:03:39 MDT 2022 +Mon Apr 4 09:31:28 MDT 2022 Start Regression test Compile 001 elapsed time 1073 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1,FV3_GFS_v16_coupled_p7_rrtmgp,FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 415 seconds. -DAPP=S2SA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 003 elapsed time 686 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP,FV3_GFS_v16_p7_rrtmgp,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 004 elapsed time 667 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 005 elapsed time 725 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 002 elapsed time 393 seconds. -DAPP=S2SA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 003 elapsed time 679 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP,FV3_GFS_v16_p7_rrtmgp,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 004 elapsed time 678 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 005 elapsed time 728 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release Compile 006 elapsed time 509 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DREPRO=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -Compile 007 elapsed time 379 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp,FV3_GFS_v16_thompson,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 315 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP,FV3_RAP_cires_ugwp,FV3_RAP_unified_ugwp,FV3_RAP_flake -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 329 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP_noah,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 010 elapsed time 285 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 011 elapsed time 754 seconds. -DAPP=HAFSW -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 380 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp,FV3_GFS_v16_thompson,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 311 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP,FV3_RAP_cires_ugwp,FV3_RAP_unified_ugwp,FV3_RAP_flake -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 325 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP_noah,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 010 elapsed time 276 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 011 elapsed time 778 seconds. -DAPP=HAFSW -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release Compile 012 elapsed time 753 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 440 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 014 elapsed time 217 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 015 elapsed time 630 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 437 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 014 elapsed time 226 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 015 elapsed time 627 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/cpld_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/cpld_control_p8 Checking test 001 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -84,14 +84,14 @@ Checking test 001 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK -0:The total amount of wall time = 415.143687 -0:The maximum resident set size (KB) = 2762464 +0:The total amount of wall time = 413.551112 +0:The maximum resident set size (KB) = 2762416 Test 001 cpld_control_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/cpld_2threads_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/cpld_2threads_p8 Checking test 002 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -145,14 +145,14 @@ Checking test 002 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK -0:The total amount of wall time = 833.587638 -0:The maximum resident set size (KB) = 3091056 +0:The total amount of wall time = 835.960960 +0:The maximum resident set size (KB) = 3090716 Test 002 cpld_2threads_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/cpld_decomp_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/cpld_decomp_p8 Checking test 003 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -206,14 +206,14 @@ Checking test 003 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK -0:The total amount of wall time = 394.617552 -0:The maximum resident set size (KB) = 2754048 +0:The total amount of wall time = 408.013668 +0:The maximum resident set size (KB) = 2754160 Test 003 cpld_decomp_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/cpld_mpi_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/cpld_mpi_p8 Checking test 004 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -267,14 +267,14 @@ Checking test 004 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK -0:The total amount of wall time = 344.777884 -0:The maximum resident set size (KB) = 2675660 +0:The total amount of wall time = 345.028661 +0:The maximum resident set size (KB) = 2675752 Test 004 cpld_mpi_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_control_p7_rrtmgp -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/cpld_control_p7_rrtmgp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/cpld_control_p7_rrtmgp Checking test 005 cpld_control_p7_rrtmgp results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -327,14 +327,14 @@ Checking test 005 cpld_control_p7_rrtmgp results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK -0:The total amount of wall time = 320.558202 -0:The maximum resident set size (KB) = 633912 +0:The total amount of wall time = 320.658018 +0:The maximum resident set size (KB) = 633184 Test 005 cpld_control_p7_rrtmgp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_bmark_p7 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/cpld_bmark_p7 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/cpld_bmark_p7 Checking test 006 cpld_bmark_p7 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -379,14 +379,14 @@ Checking test 006 cpld_bmark_p7 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK -0:The total amount of wall time = 992.737444 -0:The maximum resident set size (KB) = 1210024 +0:The total amount of wall time = 975.138069 +0:The maximum resident set size (KB) = 1209828 Test 006 cpld_bmark_p7 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_bmark_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/cpld_bmark_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/cpld_bmark_p8 Checking test 007 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -432,14 +432,14 @@ Checking test 007 cpld_bmark_p8 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK -0:The total amount of wall time = 1274.832282 -0:The maximum resident set size (KB) = 3656840 +0:The total amount of wall time = 1315.530429 +0:The maximum resident set size (KB) = 3655528 Test 007 cpld_bmark_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_control_c96_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/cpld_control_c96_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/cpld_control_c96_p8 Checking test 008 cpld_control_c96_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -502,14 +502,14 @@ Checking test 008 cpld_control_c96_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 408.662246 -0:The maximum resident set size (KB) = 2758056 +0:The total amount of wall time = 408.831667 +0:The maximum resident set size (KB) = 2759968 Test 008 cpld_control_c96_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_control_c96_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/cpld_restart_c96_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/cpld_restart_c96_p8 Checking test 009 cpld_restart_c96_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -560,14 +560,14 @@ Checking test 009 cpld_restart_c96_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 226.340070 -0:The maximum resident set size (KB) = 2721904 +0:The total amount of wall time = 225.357649 +0:The maximum resident set size (KB) = 2719660 Test 009 cpld_restart_c96_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_control_c192_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/cpld_control_c192_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/cpld_control_c192_p8 Checking test 010 cpld_control_c192_p8 results .... Comparing sfcf036.tile1.nc .........OK Comparing sfcf036.tile2.nc .........OK @@ -618,14 +618,14 @@ Checking test 010 cpld_control_c192_p8 results .... Comparing RESTART/iced.2021-03-23-64800.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-64800.nc .........OK -0:The total amount of wall time = 1361.177131 -0:The maximum resident set size (KB) = 2801900 +0:The total amount of wall time = 1367.080843 +0:The maximum resident set size (KB) = 2801452 Test 010 cpld_control_c192_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_control_c192_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/cpld_restart_c192_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/cpld_restart_c192_p8 Checking test 011 cpld_restart_c192_p8 results .... Comparing sfcf036.tile1.nc .........OK Comparing sfcf036.tile2.nc .........OK @@ -676,14 +676,14 @@ Checking test 011 cpld_restart_c192_p8 results .... Comparing RESTART/iced.2021-03-23-64800.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-64800.nc .........OK -0:The total amount of wall time = 896.893986 -0:The maximum resident set size (KB) = 2769572 +0:The total amount of wall time = 896.286507 +0:The maximum resident set size (KB) = 2769844 Test 011 cpld_restart_c192_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_control_c384_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/cpld_control_c384_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/cpld_control_c384_p8 Checking test 012 cpld_control_c384_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -727,14 +727,14 @@ Checking test 012 cpld_control_c384_p8 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK -0:The total amount of wall time = 1414.884648 -0:The maximum resident set size (KB) = 3660332 +0:The total amount of wall time = 1483.265249 +0:The maximum resident set size (KB) = 3661416 Test 012 cpld_control_c384_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_control_c384_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/cpld_restart_c384_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/cpld_restart_c384_p8 Checking test 013 cpld_restart_c384_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -778,14 +778,14 @@ Checking test 013 cpld_restart_c384_p8 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK -0:The total amount of wall time = 857.410966 -0:The maximum resident set size (KB) = 3623964 +0:The total amount of wall time = 829.698073 +0:The maximum resident set size (KB) = 3623720 Test 013 cpld_restart_c384_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_debug_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/cpld_debug_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/cpld_debug_p8 Checking test 014 cpld_debug_p8 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -836,14 +836,14 @@ Checking test 014 cpld_debug_p8 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK -0:The total amount of wall time = 1079.801943 -0:The maximum resident set size (KB) = 2830128 +0:The total amount of wall time = 1078.293392 +0:The maximum resident set size (KB) = 2829828 Test 014 cpld_debug_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/control Checking test 015 control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -890,14 +890,14 @@ Checking test 015 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 151.553024 -0:The maximum resident set size (KB) = 446540 +0:The total amount of wall time = 152.878909 +0:The maximum resident set size (KB) = 447016 Test 015 control PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/control_decomp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/control_decomp Checking test 016 control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -940,28 +940,28 @@ Checking test 016 control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 154.514284 -0:The maximum resident set size (KB) = 442588 +0:The total amount of wall time = 155.848559 +0:The maximum resident set size (KB) = 445536 Test 016 control_decomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/control_2dwrtdecomp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/control_2dwrtdecomp Checking test 017 control_2dwrtdecomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK -0:The total amount of wall time = 145.885605 -0:The maximum resident set size (KB) = 446988 +0:The total amount of wall time = 147.064388 +0:The maximum resident set size (KB) = 447140 Test 017 control_2dwrtdecomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/control_2threads +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/control_2threads Checking test 018 control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1004,14 +1004,14 @@ Checking test 018 control_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 326.933468 -0:The maximum resident set size (KB) = 494584 +0:The total amount of wall time = 327.970344 +0:The maximum resident set size (KB) = 498208 Test 018 control_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/control_restart +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/control_restart Checking test 019 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1050,14 +1050,14 @@ Checking test 019 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 77.781462 -0:The maximum resident set size (KB) = 192052 +0:The total amount of wall time = 77.977455 +0:The maximum resident set size (KB) = 191740 Test 019 control_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/control_fhzero +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/control_fhzero Checking test 020 control_fhzero results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -1100,14 +1100,14 @@ Checking test 020 control_fhzero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 144.933001 -0:The maximum resident set size (KB) = 446344 +0:The total amount of wall time = 144.408964 +0:The maximum resident set size (KB) = 447008 Test 020 control_fhzero PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/control_CubedSphereGrid -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/control_CubedSphereGrid +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/control_CubedSphereGrid Checking test 021 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1134,14 +1134,14 @@ Checking test 021 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -0:The total amount of wall time = 147.026507 -0:The maximum resident set size (KB) = 445508 +0:The total amount of wall time = 146.835638 +0:The maximum resident set size (KB) = 446616 Test 021 control_CubedSphereGrid PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/control_latlon -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/control_latlon +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/control_latlon Checking test 022 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1152,14 +1152,14 @@ Checking test 022 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 151.329397 -0:The maximum resident set size (KB) = 446572 +0:The total amount of wall time = 149.518801 +0:The maximum resident set size (KB) = 446640 Test 022 control_latlon PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/control_wrtGauss_netcdf_parallel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/control_wrtGauss_netcdf_parallel +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/control_wrtGauss_netcdf_parallel Checking test 023 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1170,14 +1170,14 @@ Checking test 023 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 152.927715 -0:The maximum resident set size (KB) = 446600 +0:The total amount of wall time = 152.123205 +0:The maximum resident set size (KB) = 446540 Test 023 control_wrtGauss_netcdf_parallel PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/control_c48 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/control_c48 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/control_c48 Checking test 024 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1216,14 +1216,14 @@ Checking test 024 control_c48 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 445.343965 -0:The maximum resident set size (KB) = 632760 +0:The total amount of wall time = 440.005185 +0:The maximum resident set size (KB) = 629824 Test 024 control_c48 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/control_c192 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/control_c192 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/control_c192 Checking test 025 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1234,14 +1234,14 @@ Checking test 025 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 615.748158 -0:The maximum resident set size (KB) = 545324 +0:The total amount of wall time = 615.547719 +0:The maximum resident set size (KB) = 545092 Test 025 control_c192 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/control_c384 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/control_c384 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/control_c384 Checking test 026 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1252,14 +1252,14 @@ Checking test 026 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 1126.726194 -0:The maximum resident set size (KB) = 801480 +0:The total amount of wall time = 1125.931713 +0:The maximum resident set size (KB) = 799276 Test 026 control_c384 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/control_c384gdas -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/control_c384gdas +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/control_c384gdas Checking test 027 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1302,14 +1302,14 @@ Checking test 027 control_c384gdas results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 966.984894 -0:The maximum resident set size (KB) = 950552 +0:The total amount of wall time = 971.598948 +0:The maximum resident set size (KB) = 951300 Test 027 control_c384gdas PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/control_stochy -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/control_stochy +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/control_stochy Checking test 028 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1320,28 +1320,28 @@ Checking test 028 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 99.886801 -0:The maximum resident set size (KB) = 448156 +0:The total amount of wall time = 99.445614 +0:The maximum resident set size (KB) = 448688 Test 028 control_stochy PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/control_stochy -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/control_stochy_restart +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/control_stochy_restart Checking test 029 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 51.692709 -0:The maximum resident set size (KB) = 221524 +0:The total amount of wall time = 52.415369 +0:The maximum resident set size (KB) = 225360 Test 029 control_stochy_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/control_lndp -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/control_lndp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/control_lndp Checking test 030 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1352,14 +1352,14 @@ Checking test 030 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 89.787874 -0:The maximum resident set size (KB) = 450300 +0:The total amount of wall time = 89.492501 +0:The maximum resident set size (KB) = 450960 Test 030 control_lndp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/control_iovr4 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/control_iovr4 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/control_iovr4 Checking test 031 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1374,14 +1374,14 @@ Checking test 031 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 151.770957 -0:The maximum resident set size (KB) = 446376 +0:The total amount of wall time = 151.758120 +0:The maximum resident set size (KB) = 446596 Test 031 control_iovr4 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/control_iovr5 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/control_iovr5 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/control_iovr5 Checking test 032 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1396,14 +1396,14 @@ Checking test 032 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 151.189004 -0:The maximum resident set size (KB) = 446392 +0:The total amount of wall time = 151.712311 +0:The maximum resident set size (KB) = 446644 Test 032 control_iovr5 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/control_p8 Checking test 033 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1450,14 +1450,14 @@ Checking test 033 control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 178.283287 -0:The maximum resident set size (KB) = 844952 +0:The total amount of wall time = 178.921655 +0:The maximum resident set size (KB) = 842112 Test 033 control_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/control_restart_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/control_restart_p8 Checking test 034 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1496,14 +1496,14 @@ Checking test 034 control_restart_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 95.239239 -0:The maximum resident set size (KB) = 577884 +0:The total amount of wall time = 96.806502 +0:The maximum resident set size (KB) = 577648 Test 034 control_restart_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/control_decomp_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/control_decomp_p8 Checking test 035 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1546,14 +1546,14 @@ Checking test 035 control_decomp_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 180.833490 -0:The maximum resident set size (KB) = 835308 +0:The total amount of wall time = 181.589698 +0:The maximum resident set size (KB) = 835648 Test 035 control_decomp_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/control_2threads_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/control_2threads_p8 Checking test 036 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1596,14 +1596,14 @@ Checking test 036 control_2threads_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 434.807841 -0:The maximum resident set size (KB) = 917784 +0:The total amount of wall time = 435.651624 +0:The maximum resident set size (KB) = 916440 Test 036 control_2threads_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/control_p7_rrtmgp -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/control_p7_rrtmgp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/control_p7_rrtmgp Checking test 037 control_p7_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1650,14 +1650,14 @@ Checking test 037 control_p7_rrtmgp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 238.198169 -0:The maximum resident set size (KB) = 584700 +0:The total amount of wall time = 239.536154 +0:The maximum resident set size (KB) = 585260 Test 037 control_p7_rrtmgp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/fv3_regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/regional_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/regional_control Checking test 038 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1668,42 +1668,42 @@ Checking test 038 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -0:The total amount of wall time = 366.261934 -0:The maximum resident set size (KB) = 571404 +0:The total amount of wall time = 367.589568 +0:The maximum resident set size (KB) = 571764 Test 038 regional_control PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/fv3_regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/regional_restart +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/regional_restart Checking test 039 regional_restart results .... Comparing dynf024.nc .........OK Comparing phyf024.nc .........OK Comparing PRSLEV.GrbF24 .........OK Comparing NATLEV.GrbF24 .........OK -0:The total amount of wall time = 199.572440 -0:The maximum resident set size (KB) = 562988 +0:The total amount of wall time = 199.795889 +0:The maximum resident set size (KB) = 562088 Test 039 regional_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/fv3_regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/regional_control_2dwrtdecomp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/regional_control_2dwrtdecomp Checking test 040 regional_control_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK -0:The total amount of wall time = 364.326500 -0:The maximum resident set size (KB) = 570624 +0:The total amount of wall time = 361.782374 +0:The maximum resident set size (KB) = 571016 Test 040 regional_control_2dwrtdecomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/fv3_regional_noquilt -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/regional_noquilt +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/regional_noquilt Checking test 041 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1711,14 +1711,14 @@ Checking test 041 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 = 384.668172 -0:The maximum resident set size (KB) = 579136 +0:The total amount of wall time = 385.074130 +0:The maximum resident set size (KB) = 577428 Test 041 regional_noquilt PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/fv3_regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/regional_2threads +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/regional_2threads Checking test 042 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1729,14 +1729,14 @@ Checking test 042 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -0:The total amount of wall time = 942.072033 -0:The maximum resident set size (KB) = 557364 +0:The total amount of wall time = 943.489727 +0:The maximum resident set size (KB) = 558156 Test 042 regional_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/fv3_regional_hafs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/regional_hafs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/regional_hafs Checking test 043 regional_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1745,28 +1745,28 @@ Checking test 043 regional_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK -0:The total amount of wall time = 357.393678 -0:The maximum resident set size (KB) = 560916 +0:The total amount of wall time = 357.801071 +0:The maximum resident set size (KB) = 560956 Test 043 regional_hafs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/fv3_regional_netcdf_parallel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/regional_netcdf_parallel +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/regional_netcdf_parallel Checking test 044 regional_netcdf_parallel results .... - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK + Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf024.nc ............ALT CHECK......OK Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK + Comparing phyf024.nc ............ALT CHECK......OK -0:The total amount of wall time = 364.415409 -0:The maximum resident set size (KB) = 560612 +0:The total amount of wall time = 356.968170 +0:The maximum resident set size (KB) = 562004 Test 044 regional_netcdf_parallel PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/fv3_regional_RRTMGP -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/regional_RRTMGP +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/regional_RRTMGP Checking test 045 regional_RRTMGP results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1777,14 +1777,14 @@ Checking test 045 regional_RRTMGP results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -0:The total amount of wall time = 529.085636 -0:The maximum resident set size (KB) = 682408 +0:The total amount of wall time = 503.717132 +0:The maximum resident set size (KB) = 684352 Test 045 regional_RRTMGP PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/fv3_regional_3km -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/regional_3km +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/regional_3km Checking test 046 regional_3km results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1795,14 +1795,14 @@ Checking test 046 regional_3km results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 314.393559 -0:The maximum resident set size (KB) = 594724 +0:The total amount of wall time = 313.935111 +0:The maximum resident set size (KB) = 594960 Test 046 regional_3km PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/rap_control Checking test 047 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1849,14 +1849,14 @@ Checking test 047 rap_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 424.615012 -0:The maximum resident set size (KB) = 811380 +0:The total amount of wall time = 422.629394 +0:The maximum resident set size (KB) = 811716 Test 047 rap_control PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/regional_spp_sppt_shum_skeb -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/regional_spp_sppt_shum_skeb +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/regional_spp_sppt_shum_skeb Checking test 048 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -1867,14 +1867,14 @@ Checking test 048 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -0:The total amount of wall time = 651.060355 -0:The maximum resident set size (KB) = 942808 +0:The total amount of wall time = 639.764388 +0:The maximum resident set size (KB) = 941576 Test 048 regional_spp_sppt_shum_skeb PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/rap_2threads +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/rap_2threads Checking test 049 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1921,14 +1921,14 @@ Checking test 049 rap_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 897.372059 -0:The maximum resident set size (KB) = 878008 +0:The total amount of wall time = 886.404302 +0:The maximum resident set size (KB) = 878728 Test 049 rap_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/rap_restart +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/rap_restart Checking test 050 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1967,14 +1967,14 @@ Checking test 050 rap_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 214.329723 -0:The maximum resident set size (KB) = 565256 +0:The total amount of wall time = 216.662842 +0:The maximum resident set size (KB) = 565448 Test 050 rap_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/rap_sfcdiff +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/rap_sfcdiff Checking test 051 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2021,14 +2021,14 @@ Checking test 051 rap_sfcdiff results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 424.825095 -0:The maximum resident set size (KB) = 811312 +0:The total amount of wall time = 416.605805 +0:The maximum resident set size (KB) = 811668 Test 051 rap_sfcdiff PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/rap_sfcdiff_restart +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/rap_sfcdiff_restart Checking test 052 rap_sfcdiff_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2067,14 +2067,14 @@ Checking test 052 rap_sfcdiff_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 214.911743 -0:The maximum resident set size (KB) = 565148 +0:The total amount of wall time = 210.815293 +0:The maximum resident set size (KB) = 565120 Test 052 rap_sfcdiff_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/hrrr_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/hrrr_control Checking test 053 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2121,14 +2121,14 @@ Checking test 053 hrrr_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 414.265173 -0:The maximum resident set size (KB) = 809612 +0:The total amount of wall time = 409.530089 +0:The maximum resident set size (KB) = 810172 Test 053 hrrr_control PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/rrfs_v1beta -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/rrfs_v1beta +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/rrfs_v1beta Checking test 054 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2175,14 +2175,14 @@ Checking test 054 rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 416.524978 -0:The maximum resident set size (KB) = 809072 +0:The total amount of wall time = 418.730865 +0:The maximum resident set size (KB) = 809120 Test 054 rrfs_v1beta PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/rrfs_v1nssl -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/rrfs_v1nssl +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/rrfs_v1nssl Checking test 055 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2197,14 +2197,14 @@ Checking test 055 rrfs_v1nssl results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 533.345078 -0:The maximum resident set size (KB) = 499620 +0:The total amount of wall time = 533.223111 +0:The maximum resident set size (KB) = 498912 Test 055 rrfs_v1nssl PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/rrfs_v1nssl_nohailnoccn +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/rrfs_v1nssl_nohailnoccn Checking test 056 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2219,14 +2219,14 @@ Checking test 056 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 507.309562 -0:The maximum resident set size (KB) = 492576 +0:The total amount of wall time = 507.341196 +0:The maximum resident set size (KB) = 492344 Test 056 rrfs_v1nssl_nohailnoccn PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/rrfs_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/rrfs_conus13km_hrrr_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/rrfs_conus13km_hrrr_warm Checking test 057 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2235,14 +2235,14 @@ Checking test 057 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 189.186827 -0:The maximum resident set size (KB) = 641668 +0:The total amount of wall time = 190.850910 +0:The maximum resident set size (KB) = 642176 Test 057 rrfs_conus13km_hrrr_warm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/rrfs_conus13km_radar_tten_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/rrfs_conus13km_radar_tten_warm Checking test 058 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2251,14 +2251,14 @@ Checking test 058 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 191.531383 -0:The maximum resident set size (KB) = 643188 +0:The total amount of wall time = 190.590564 +0:The maximum resident set size (KB) = 644276 Test 058 rrfs_conus13km_radar_tten_warm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/control_rrtmgp -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/control_rrtmgp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/control_rrtmgp Checking test 059 control_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2269,14 +2269,14 @@ Checking test 059 control_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 269.244862 -0:The maximum resident set size (KB) = 579868 +0:The total amount of wall time = 270.177071 +0:The maximum resident set size (KB) = 580000 Test 059 control_rrtmgp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/control_rrtmgp_c192 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/control_rrtmgp_c192 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/control_rrtmgp_c192 Checking test 060 control_rrtmgp_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2287,14 +2287,14 @@ Checking test 060 control_rrtmgp_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 712.642253 -0:The maximum resident set size (KB) = 782428 +0:The total amount of wall time = 718.656509 +0:The maximum resident set size (KB) = 781860 Test 060 control_rrtmgp_c192 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/control_csawmg -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/control_csawmg +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/control_csawmg Checking test 061 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2305,14 +2305,14 @@ Checking test 061 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 416.224218 -0:The maximum resident set size (KB) = 522568 +0:The total amount of wall time = 413.789351 +0:The maximum resident set size (KB) = 523788 Test 061 control_csawmg PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/control_csawmgt -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/control_csawmgt +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/control_csawmgt Checking test 062 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2323,14 +2323,14 @@ Checking test 062 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 412.547992 -0:The maximum resident set size (KB) = 523148 +0:The total amount of wall time = 409.647579 +0:The maximum resident set size (KB) = 522060 Test 062 control_csawmgt PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/control_flake -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/control_flake +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/control_flake Checking test 063 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2341,14 +2341,14 @@ Checking test 063 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 273.172899 -0:The maximum resident set size (KB) = 516904 +0:The total amount of wall time = 271.282638 +0:The maximum resident set size (KB) = 519572 Test 063 control_flake PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/control_ras -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/control_ras +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/control_ras Checking test 064 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2359,14 +2359,14 @@ Checking test 064 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 212.406422 -0:The maximum resident set size (KB) = 480048 +0:The total amount of wall time = 213.116116 +0:The maximum resident set size (KB) = 480544 Test 064 control_ras PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/control_thompson -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/control_thompson +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/control_thompson Checking test 065 control_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2377,14 +2377,14 @@ Checking test 065 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 270.124870 -0:The maximum resident set size (KB) = 831636 +0:The total amount of wall time = 270.052686 +0:The maximum resident set size (KB) = 832012 Test 065 control_thompson PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/control_thompson_no_aero -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/control_thompson_no_aero +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/control_thompson_no_aero Checking test 066 control_thompson_no_aero results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2395,54 +2395,54 @@ Checking test 066 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 255.896204 -0:The maximum resident set size (KB) = 825316 +0:The total amount of wall time = 255.569384 +0:The maximum resident set size (KB) = 826016 Test 066 control_thompson_no_aero PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/control_wam_repro -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/control_wam_repro +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/control_wam_repro Checking test 067 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -0:The total amount of wall time = 141.431526 -0:The maximum resident set size (KB) = 204228 +0:The total amount of wall time = 141.998510 +0:The maximum resident set size (KB) = 204536 Test 067 control_wam PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/control_debug Checking test 068 control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 157.464048 -0:The maximum resident set size (KB) = 612552 +0:The total amount of wall time = 161.862833 +0:The maximum resident set size (KB) = 613792 Test 068 control_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/control_2threads_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/control_2threads_debug Checking test 069 control_2threads_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 275.748130 -0:The maximum resident set size (KB) = 661164 +0:The total amount of wall time = 279.788358 +0:The maximum resident set size (KB) = 666592 Test 069 control_2threads_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/control_CubedSphereGrid_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/control_CubedSphereGrid_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/control_CubedSphereGrid_debug Checking test 070 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2469,428 +2469,428 @@ Checking test 070 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -0:The total amount of wall time = 171.023266 -0:The maximum resident set size (KB) = 612488 +0:The total amount of wall time = 179.006223 +0:The maximum resident set size (KB) = 613380 Test 070 control_CubedSphereGrid_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/control_wrtGauss_netcdf_parallel_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/control_wrtGauss_netcdf_parallel_debug Checking test 071 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 160.085786 -0:The maximum resident set size (KB) = 612700 +0:The total amount of wall time = 163.709802 +0:The maximum resident set size (KB) = 613744 Test 071 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/control_stochy_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/control_stochy_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/control_stochy_debug Checking test 072 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 179.030341 -0:The maximum resident set size (KB) = 616980 +0:The total amount of wall time = 186.408382 +0:The maximum resident set size (KB) = 617676 Test 072 control_stochy_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/control_lndp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/control_lndp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/control_lndp_debug Checking test 073 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 161.187358 -0:The maximum resident set size (KB) = 617820 +0:The total amount of wall time = 168.175775 +0:The maximum resident set size (KB) = 618412 Test 073 control_lndp_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/control_rrtmgp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/control_rrtmgp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/control_rrtmgp_debug Checking test 074 control_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 175.035330 -0:The maximum resident set size (KB) = 724556 +0:The total amount of wall time = 179.486717 +0:The maximum resident set size (KB) = 724280 Test 074 control_rrtmgp_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/control_csawmg_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/control_csawmg_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/control_csawmg_debug Checking test 075 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 252.928065 -0:The maximum resident set size (KB) = 663976 +0:The total amount of wall time = 256.141610 +0:The maximum resident set size (KB) = 662992 Test 075 control_csawmg_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/control_csawmgt_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/control_csawmgt_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/control_csawmgt_debug Checking test 076 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 249.164794 -0:The maximum resident set size (KB) = 661168 +0:The total amount of wall time = 253.770654 +0:The maximum resident set size (KB) = 662576 Test 076 control_csawmgt_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/control_ras_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/control_ras_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/control_ras_debug Checking test 077 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 163.466026 -0:The maximum resident set size (KB) = 625812 +0:The total amount of wall time = 168.861495 +0:The maximum resident set size (KB) = 626068 Test 077 control_ras_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/control_diag_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/control_diag_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/control_diag_debug Checking test 078 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 165.266941 -0:The maximum resident set size (KB) = 669160 +0:The total amount of wall time = 173.584392 +0:The maximum resident set size (KB) = 669520 Test 078 control_diag_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/control_debug_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/control_debug_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/control_debug_p8 Checking test 079 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 = 173.453820 -0:The maximum resident set size (KB) = 1008636 +0:The total amount of wall time = 176.026111 +0:The maximum resident set size (KB) = 1008872 Test 079 control_debug_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/control_thompson_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/control_thompson_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/control_thompson_debug Checking test 080 control_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 184.167883 -0:The maximum resident set size (KB) = 971848 +0:The total amount of wall time = 187.150791 +0:The maximum resident set size (KB) = 973084 Test 080 control_thompson_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/control_thompson_no_aero_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/control_thompson_no_aero_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/control_thompson_no_aero_debug Checking test 081 control_thompson_no_aero_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 177.575470 -0:The maximum resident set size (KB) = 968260 +0:The total amount of wall time = 180.421332 +0:The maximum resident set size (KB) = 968616 Test 081 control_thompson_no_aero_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/control_thompson_debug_extdiag -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/control_thompson_extdiag_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/control_thompson_extdiag_debug Checking test 082 control_thompson_extdiag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 194.044833 -0:The maximum resident set size (KB) = 1002816 +0:The total amount of wall time = 200.305891 +0:The maximum resident set size (KB) = 1002056 Test 082 control_thompson_extdiag_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/control_thompson_progcld_thompson_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/control_thompson_progcld_thompson_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/control_thompson_progcld_thompson_debug Checking test 083 control_thompson_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 183.733287 -0:The maximum resident set size (KB) = 971656 +0:The total amount of wall time = 185.654897 +0:The maximum resident set size (KB) = 973144 Test 083 control_thompson_progcld_thompson_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/fv3_regional_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/regional_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/regional_debug Checking test 084 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 = 260.086658 -0:The maximum resident set size (KB) = 594620 +0:The total amount of wall time = 261.057365 +0:The maximum resident set size (KB) = 593452 Test 084 regional_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/rap_control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/rap_control_debug Checking test 085 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 = 285.451659 -0:The maximum resident set size (KB) = 979108 +0:The total amount of wall time = 292.096080 +0:The maximum resident set size (KB) = 980268 Test 085 rap_control_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/rap_unified_drag_suite_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/rap_unified_drag_suite_debug Checking test 086 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 = 287.237262 -0:The maximum resident set size (KB) = 979104 +0:The total amount of wall time = 290.551282 +0:The maximum resident set size (KB) = 979952 Test 086 rap_unified_drag_suite_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_diag_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/rap_diag_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/rap_diag_debug Checking test 087 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 299.628121 -0:The maximum resident set size (KB) = 1061660 +0:The total amount of wall time = 302.430479 +0:The maximum resident set size (KB) = 1062340 Test 087 rap_diag_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_cires_ugwp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/rap_cires_ugwp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/rap_cires_ugwp_debug Checking test 088 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 = 290.863213 -0:The maximum resident set size (KB) = 983856 +0:The total amount of wall time = 295.539146 +0:The maximum resident set size (KB) = 980444 Test 088 rap_cires_ugwp_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_cires_ugwp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/rap_unified_ugwp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/rap_unified_ugwp_debug Checking test 089 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 = 291.928405 -0:The maximum resident set size (KB) = 978996 +0:The total amount of wall time = 296.129830 +0:The maximum resident set size (KB) = 979936 Test 089 rap_unified_ugwp_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_lndp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/rap_lndp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/rap_lndp_debug Checking test 090 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 = 288.148259 -0:The maximum resident set size (KB) = 979892 +0:The total amount of wall time = 291.062564 +0:The maximum resident set size (KB) = 980452 Test 090 rap_lndp_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_flake_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/rap_flake_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/rap_flake_debug Checking test 091 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 = 285.552909 -0:The maximum resident set size (KB) = 979052 +0:The total amount of wall time = 290.589464 +0:The maximum resident set size (KB) = 980276 Test 091 rap_flake_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_progcld_thompson_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/rap_progcld_thompson_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/rap_progcld_thompson_debug Checking test 092 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 287.455642 -0:The maximum resident set size (KB) = 979024 +0:The total amount of wall time = 292.523831 +0:The maximum resident set size (KB) = 979292 Test 092 rap_progcld_thompson_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_noah_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/rap_noah_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/rap_noah_debug Checking test 093 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 281.690307 -0:The maximum resident set size (KB) = 977528 +0:The total amount of wall time = 284.087099 +0:The maximum resident set size (KB) = 981124 Test 093 rap_noah_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_rrtmgp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/rap_rrtmgp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/rap_rrtmgp_debug Checking test 094 rap_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 485.428882 -0:The maximum resident set size (KB) = 1093660 +0:The total amount of wall time = 486.322640 +0:The maximum resident set size (KB) = 1093844 Test 094 rap_rrtmgp_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_sfcdiff_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/rap_sfcdiff_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/rap_sfcdiff_debug Checking test 095 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 285.835483 -0:The maximum resident set size (KB) = 978840 +0:The total amount of wall time = 290.441861 +0:The maximum resident set size (KB) = 979660 Test 095 rap_sfcdiff_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/rap_noah_sfcdiff_cires_ugwp_debug Checking test 096 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 = 470.802544 -0:The maximum resident set size (KB) = 978460 +0:The total amount of wall time = 473.496196 +0:The maximum resident set size (KB) = 980140 Test 096 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/rrfs_v1beta_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/rrfs_v1beta_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/rrfs_v1beta_debug Checking test 097 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 283.109679 -0:The maximum resident set size (KB) = 976752 +0:The total amount of wall time = 284.693902 +0:The maximum resident set size (KB) = 977040 Test 097 rrfs_v1beta_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/control_wam_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/control_wam_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/control_wam_debug Checking test 098 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -0:The total amount of wall time = 296.862275 -0:The maximum resident set size (KB) = 235460 +0:The total amount of wall time = 303.515212 +0:The maximum resident set size (KB) = 235384 Test 098 control_wam_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/hafs_regional_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/hafs_regional_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/hafs_regional_atm Checking test 099 hafs_regional_atm results .... Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK + Comparing sfcf006.nc ............ALT CHECK......OK -0:The total amount of wall time = 512.749519 -0:The maximum resident set size (KB) = 675360 +0:The total amount of wall time = 512.510177 +0:The maximum resident set size (KB) = 676496 Test 099 hafs_regional_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/hafs_regional_atm_thompson_gfdlsf +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/hafs_regional_atm_thompson_gfdlsf Checking test 100 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc .........OK -0:The total amount of wall time = 600.504284 -0:The maximum resident set size (KB) = 1034044 +0:The total amount of wall time = 594.352151 +0:The maximum resident set size (KB) = 1031692 Test 100 hafs_regional_atm_thompson_gfdlsf PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/hafs_regional_atm_ocn -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/hafs_regional_atm_ocn +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/hafs_regional_atm_ocn Checking test 101 hafs_regional_atm_ocn results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc .........OK @@ -2899,28 +2899,28 @@ Checking test 101 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 = 403.400534 -0:The maximum resident set size (KB) = 691300 +0:The total amount of wall time = 385.841641 +0:The maximum resident set size (KB) = 690356 Test 101 hafs_regional_atm_ocn PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/hafs_regional_atm_wav -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/hafs_regional_atm_wav +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/hafs_regional_atm_wav Checking test 102 hafs_regional_atm_wav results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc .........OK Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK -0:The total amount of wall time = 1015.387753 -0:The maximum resident set size (KB) = 688612 +0:The total amount of wall time = 1000.747661 +0:The maximum resident set size (KB) = 690060 Test 102 hafs_regional_atm_wav PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/hafs_regional_atm_ocn_wav -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/hafs_regional_atm_ocn_wav +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/hafs_regional_atm_ocn_wav Checking test 103 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc .........OK @@ -2929,78 +2929,78 @@ Checking test 103 hafs_regional_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK -0:The total amount of wall time = 1083.887592 -0:The maximum resident set size (KB) = 690088 +0:The total amount of wall time = 1092.979265 +0:The maximum resident set size (KB) = 690964 Test 103 hafs_regional_atm_ocn_wav PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/hafs_regional_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/hafs_regional_1nest_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/hafs_regional_1nest_atm Checking test 104 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc ............ALT CHECK......OK Comparing sfc.nest02.f006.nc ............ALT CHECK......OK -0:The total amount of wall time = 1037.949815 -0:The maximum resident set size (KB) = 272420 +0:The total amount of wall time = 1040.260527 +0:The maximum resident set size (KB) = 273284 Test 104 hafs_regional_1nest_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/hafs_regional_telescopic_2nests_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/hafs_regional_telescopic_2nests_atm Checking test 105 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc ............ALT CHECK......OK Comparing sfc.nest02.f006.nc .........OK Comparing atm.nest03.f006.nc .........OK - Comparing sfc.nest03.f006.nc ............ALT CHECK......OK + Comparing sfc.nest03.f006.nc .........OK -0:The total amount of wall time = 1072.207560 -0:The maximum resident set size (KB) = 280808 +0:The total amount of wall time = 1086.738970 +0:The maximum resident set size (KB) = 280484 Test 105 hafs_regional_telescopic_2nests_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/hafs_global_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/hafs_global_1nest_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/hafs_global_1nest_atm Checking test 106 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc ............ALT CHECK......OK Comparing sfc.nest02.f006.nc ............ALT CHECK......OK -0:The total amount of wall time = 674.219644 -0:The maximum resident set size (KB) = 174344 +0:The total amount of wall time = 677.207367 +0:The maximum resident set size (KB) = 175136 Test 106 hafs_global_1nest_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/hafs_global_multiple_4nests_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/hafs_global_multiple_4nests_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/hafs_global_multiple_4nests_atm Checking test 107 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK + Comparing atm.nest02.f006.nc ............ALT CHECK......OK Comparing sfc.nest02.f006.nc .........OK Comparing atm.nest03.f006.nc .........OK Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest04.f006.nc .........OK Comparing sfc.nest04.f006.nc .........OK Comparing atm.nest05.f006.nc .........OK - Comparing sfc.nest05.f006.nc .........OK + Comparing sfc.nest05.f006.nc ............ALT CHECK......OK -0:The total amount of wall time = 1252.341781 -0:The maximum resident set size (KB) = 238332 +0:The total amount of wall time = 1255.935936 +0:The maximum resident set size (KB) = 238136 Test 107 hafs_global_multiple_4nests_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/hafs_regional_docn -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/hafs_regional_docn +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/hafs_regional_docn Checking test 108 hafs_regional_docn results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc .........OK @@ -3008,14 +3008,14 @@ Checking test 108 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 = 364.290027 -0:The maximum resident set size (KB) = 690288 +0:The total amount of wall time = 368.026077 +0:The maximum resident set size (KB) = 688664 Test 108 hafs_regional_docn PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/hafs_regional_docn_oisst -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/hafs_regional_docn_oisst +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/hafs_regional_docn_oisst Checking test 109 hafs_regional_docn_oisst results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc .........OK @@ -3023,118 +3023,118 @@ Checking test 109 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 = 369.605770 -0:The maximum resident set size (KB) = 690596 +0:The total amount of wall time = 367.073747 +0:The maximum resident set size (KB) = 688616 Test 109 hafs_regional_docn_oisst PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/hafs_regional_datm_cdeps -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/hafs_regional_datm_cdeps +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/hafs_regional_datm_cdeps Checking test 110 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 = 1176.989525 -0:The maximum resident set size (KB) = 872004 +0:The total amount of wall time = 1293.860850 +0:The maximum resident set size (KB) = 871984 Test 110 hafs_regional_datm_cdeps PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/datm_cdeps_control_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/datm_cdeps_control_cfsr Checking test 111 datm_cdeps_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 165.362790 -0:The maximum resident set size (KB) = 695076 +0:The total amount of wall time = 166.182448 +0:The maximum resident set size (KB) = 695240 Test 111 datm_cdeps_control_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/datm_cdeps_restart_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/datm_cdeps_restart_cfsr Checking test 112 datm_cdeps_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 100.217817 -0:The maximum resident set size (KB) = 694224 +0:The total amount of wall time = 100.972824 +0:The maximum resident set size (KB) = 694416 Test 112 datm_cdeps_restart_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_control_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/datm_cdeps_control_gefs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/datm_cdeps_control_gefs Checking test 113 datm_cdeps_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 154.373610 -0:The maximum resident set size (KB) = 592724 +0:The total amount of wall time = 160.092939 +0:The maximum resident set size (KB) = 592672 Test 113 datm_cdeps_control_gefs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_iau_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/datm_cdeps_iau_gefs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/datm_cdeps_iau_gefs Checking test 114 datm_cdeps_iau_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 161.938450 -0:The maximum resident set size (KB) = 592848 +0:The total amount of wall time = 161.738280 +0:The maximum resident set size (KB) = 593192 Test 114 datm_cdeps_iau_gefs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_stochy_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/datm_cdeps_stochy_gefs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/datm_cdeps_stochy_gefs Checking test 115 datm_cdeps_stochy_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 162.114829 -0:The maximum resident set size (KB) = 592700 +0:The total amount of wall time = 161.700069 +0:The maximum resident set size (KB) = 593076 Test 115 datm_cdeps_stochy_gefs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_bulk_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/datm_cdeps_bulk_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/datm_cdeps_bulk_cfsr Checking test 116 datm_cdeps_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 166.117151 -0:The maximum resident set size (KB) = 694732 +0:The total amount of wall time = 167.006725 +0:The maximum resident set size (KB) = 694952 Test 116 datm_cdeps_bulk_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_bulk_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/datm_cdeps_bulk_gefs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/datm_cdeps_bulk_gefs Checking test 117 datm_cdeps_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 159.261031 -0:The maximum resident set size (KB) = 592464 +0:The total amount of wall time = 161.564080 +0:The maximum resident set size (KB) = 592920 Test 117 datm_cdeps_bulk_gefs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_mx025_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/datm_cdeps_mx025_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/datm_cdeps_mx025_cfsr Checking test 118 datm_cdeps_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -3143,14 +3143,14 @@ Checking test 118 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 = 345.009967 -0:The maximum resident set size (KB) = 523848 +0:The total amount of wall time = 334.307564 +0:The maximum resident set size (KB) = 524824 Test 118 datm_cdeps_mx025_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_mx025_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/datm_cdeps_mx025_gefs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/datm_cdeps_mx025_gefs Checking test 119 datm_cdeps_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -3159,64 +3159,64 @@ Checking test 119 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-01-43200.nc .........OK -0:The total amount of wall time = 347.155898 -0:The maximum resident set size (KB) = 495152 +0:The total amount of wall time = 334.063672 +0:The maximum resident set size (KB) = 495620 Test 119 datm_cdeps_mx025_gefs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/datm_cdeps_multiple_files_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/datm_cdeps_multiple_files_cfsr Checking test 120 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 165.335933 -0:The maximum resident set size (KB) = 694824 +0:The total amount of wall time = 165.232179 +0:The maximum resident set size (KB) = 695124 Test 120 datm_cdeps_multiple_files_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/datm_cdeps_3072x1536_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/datm_cdeps_3072x1536_cfsr Checking test 121 datm_cdeps_3072x1536_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 251.779036 -0:The maximum resident set size (KB) = 1846384 +0:The total amount of wall time = 266.383805 +0:The maximum resident set size (KB) = 1846324 Test 121 datm_cdeps_3072x1536_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_gfs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/datm_cdeps_gfs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/datm_cdeps_gfs Checking test 122 datm_cdeps_gfs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 250.826692 -0:The maximum resident set size (KB) = 1847020 +0:The total amount of wall time = 252.018545 +0:The maximum resident set size (KB) = 1814644 Test 122 datm_cdeps_gfs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_debug_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/datm_cdeps_debug_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/datm_cdeps_debug_cfsr Checking test 123 datm_cdeps_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK -0:The total amount of wall time = 456.712879 -0:The maximum resident set size (KB) = 703244 +0:The total amount of wall time = 455.319117 +0:The maximum resident set size (KB) = 714472 Test 123 datm_cdeps_debug_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220401/INTEL/control_atmwav -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_55091/control_atmwav +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_45948/control_atmwav Checking test 124 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -3260,12 +3260,12 @@ Checking test 124 control_atmwav results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK -0:The total amount of wall time = 138.832316 -0:The maximum resident set size (KB) = 466872 +0:The total amount of wall time = 138.741221 +0:The maximum resident set size (KB) = 468132 Test 124 control_atmwav PASS REGRESSION TEST WAS SUCCESSFUL -Fri Apr 1 12:19:36 MDT 2022 -Elapsed time: 01h:15m:57s. Have a nice day! +Mon Apr 4 10:38:45 MDT 2022 +Elapsed time: 01h:07m:18s. Have a nice day! diff --git a/tests/RegressionTests_gaea.intel.log b/tests/RegressionTests_gaea.intel.log index 5615cbe37f..3f11de1a3e 100644 --- a/tests/RegressionTests_gaea.intel.log +++ b/tests/RegressionTests_gaea.intel.log @@ -1,24 +1,24 @@ -Fri Apr 1 13:30:59 EDT 2022 +Mon Apr 4 11:36:05 EDT 2022 Start Regression test -Compile 001 elapsed time 564 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1,FV3_GFS_v16_coupled_p7_rrtmgp,FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 236 seconds. -DAPP=S2SA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 003 elapsed time 393 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP,FV3_GFS_v16_p7_rrtmgp,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 004 elapsed time 415 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 005 elapsed time 425 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 366 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DREPRO=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -Compile 007 elapsed time 222 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp,FV3_GFS_v16_thompson,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 201 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP,FV3_RAP_cires_ugwp,FV3_RAP_unified_ugwp,FV3_RAP_flake -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 193 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP_noah,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 010 elapsed time 198 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 011 elapsed time 457 seconds. -DAPP=HAFSW -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 456 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 260 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 014 elapsed time 128 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 015 elapsed time 447 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 001 elapsed time 615 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1,FV3_GFS_v16_coupled_p7_rrtmgp,FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 251 seconds. -DAPP=S2SA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 003 elapsed time 425 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP,FV3_GFS_v16_p7_rrtmgp,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 004 elapsed time 422 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 005 elapsed time 418 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 391 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DREPRO=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit +Compile 007 elapsed time 232 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp,FV3_GFS_v16_thompson,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 210 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP,FV3_RAP_cires_ugwp,FV3_RAP_unified_ugwp,FV3_RAP_flake -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 224 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP_noah,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 010 elapsed time 209 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 011 elapsed time 430 seconds. -DAPP=HAFSW -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 432 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 266 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 014 elapsed time 144 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 015 elapsed time 758 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/cpld_control_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/cpld_control_p8 Checking test 001 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -84,14 +84,14 @@ Checking test 001 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK - 0: The total amount of wall time = 376.259672 - 0: The maximum resident set size (KB) = 1070728 + 0: The total amount of wall time = 407.494540 + 0: The maximum resident set size (KB) = 1048496 Test 001 cpld_control_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/cpld_2threads_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/cpld_2threads_p8 Checking test 002 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -145,14 +145,14 @@ Checking test 002 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK - 0: The total amount of wall time = 510.250759 - 0: The maximum resident set size (KB) = 1487520 + 0: The total amount of wall time = 542.929375 + 0: The maximum resident set size (KB) = 1463836 Test 002 cpld_2threads_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/cpld_decomp_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/cpld_decomp_p8 Checking test 003 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -206,14 +206,14 @@ Checking test 003 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK - 0: The total amount of wall time = 383.358085 - 0: The maximum resident set size (KB) = 1204060 + 0: The total amount of wall time = 371.055999 + 0: The maximum resident set size (KB) = 1225072 Test 003 cpld_decomp_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/cpld_mpi_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/cpld_mpi_p8 Checking test 004 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -267,14 +267,14 @@ Checking test 004 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK - 0: The total amount of wall time = 308.329113 - 0: The maximum resident set size (KB) = 943636 + 0: The total amount of wall time = 312.282737 + 0: The maximum resident set size (KB) = 942592 Test 004 cpld_mpi_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_control_p7_rrtmgp -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/cpld_control_p7_rrtmgp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/cpld_control_p7_rrtmgp Checking test 005 cpld_control_p7_rrtmgp results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -327,14 +327,14 @@ Checking test 005 cpld_control_p7_rrtmgp results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK - 0: The total amount of wall time = 323.825346 - 0: The maximum resident set size (KB) = 590312 + 0: The total amount of wall time = 324.595021 + 0: The maximum resident set size (KB) = 617848 Test 005 cpld_control_p7_rrtmgp PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_bmark_p7 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/cpld_bmark_p7 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/cpld_bmark_p7 Checking test 006 cpld_bmark_p7 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -379,14 +379,14 @@ Checking test 006 cpld_bmark_p7 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - 0: The total amount of wall time = 979.638336 - 0: The maximum resident set size (KB) = 1160032 + 0: The total amount of wall time = 953.400741 + 0: The maximum resident set size (KB) = 1160352 Test 006 cpld_bmark_p7 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_bmark_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/cpld_bmark_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/cpld_bmark_p8 Checking test 007 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -432,14 +432,14 @@ Checking test 007 cpld_bmark_p8 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - 0: The total amount of wall time = 1226.292609 - 0: The maximum resident set size (KB) = 2715968 + 0: The total amount of wall time = 1228.283530 + 0: The maximum resident set size (KB) = 2736688 Test 007 cpld_bmark_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_control_c96_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/cpld_control_c96_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/cpld_control_c96_p8 Checking test 008 cpld_control_c96_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -502,14 +502,14 @@ Checking test 008 cpld_control_c96_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 391.035766 - 0: The maximum resident set size (KB) = 1069976 + 0: The total amount of wall time = 360.994952 + 0: The maximum resident set size (KB) = 1070140 Test 008 cpld_control_c96_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_control_c96_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/cpld_restart_c96_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/cpld_restart_c96_p8 Checking test 009 cpld_restart_c96_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -560,14 +560,14 @@ Checking test 009 cpld_restart_c96_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 231.643586 - 0: The maximum resident set size (KB) = 1018636 + 0: The total amount of wall time = 229.953463 + 0: The maximum resident set size (KB) = 1018120 Test 009 cpld_restart_c96_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_control_c192_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/cpld_control_c192_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/cpld_control_c192_p8 Checking test 010 cpld_control_c192_p8 results .... Comparing sfcf036.tile1.nc .........OK Comparing sfcf036.tile2.nc .........OK @@ -618,14 +618,14 @@ Checking test 010 cpld_control_c192_p8 results .... Comparing RESTART/iced.2021-03-23-64800.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-64800.nc .........OK - 0: The total amount of wall time = 1688.423197 - 0: The maximum resident set size (KB) = 1437100 + 0: The total amount of wall time = 1689.999110 + 0: The maximum resident set size (KB) = 1436812 Test 010 cpld_control_c192_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_control_c192_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/cpld_restart_c192_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/cpld_restart_c192_p8 Checking test 011 cpld_restart_c192_p8 results .... Comparing sfcf036.tile1.nc .........OK Comparing sfcf036.tile2.nc .........OK @@ -676,14 +676,14 @@ Checking test 011 cpld_restart_c192_p8 results .... Comparing RESTART/iced.2021-03-23-64800.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-64800.nc .........OK - 0: The total amount of wall time = 1127.449006 - 0: The maximum resident set size (KB) = 1655792 + 0: The total amount of wall time = 1155.419326 + 0: The maximum resident set size (KB) = 1649772 Test 011 cpld_restart_c192_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_control_c384_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/cpld_control_c384_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/cpld_control_c384_p8 Checking test 012 cpld_control_c384_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -727,14 +727,14 @@ Checking test 012 cpld_control_c384_p8 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK - 0: The total amount of wall time = 1425.559452 - 0: The maximum resident set size (KB) = 2733752 + 0: The total amount of wall time = 1388.476540 + 0: The maximum resident set size (KB) = 2739460 Test 012 cpld_control_c384_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_control_c384_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/cpld_restart_c384_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/cpld_restart_c384_p8 Checking test 013 cpld_restart_c384_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -778,14 +778,14 @@ Checking test 013 cpld_restart_c384_p8 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK - 0: The total amount of wall time = 893.003495 - 0: The maximum resident set size (KB) = 2707664 + 0: The total amount of wall time = 868.888412 + 0: The maximum resident set size (KB) = 2706304 Test 013 cpld_restart_c384_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_debug_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/cpld_debug_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/cpld_debug_p8 Checking test 014 cpld_debug_p8 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -836,14 +836,14 @@ Checking test 014 cpld_debug_p8 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK - 0: The total amount of wall time = 978.155665 - 0: The maximum resident set size (KB) = 1201092 + 0: The total amount of wall time = 975.886279 + 0: The maximum resident set size (KB) = 1201060 Test 014 cpld_debug_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/control Checking test 015 control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -890,14 +890,14 @@ Checking test 015 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 136.544078 - 0: The maximum resident set size (KB) = 434976 + 0: The total amount of wall time = 158.961241 + 0: The maximum resident set size (KB) = 435136 Test 015 control PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/control_decomp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/control_decomp Checking test 016 control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -940,28 +940,28 @@ Checking test 016 control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 140.218889 - 0: The maximum resident set size (KB) = 431240 + 0: The total amount of wall time = 140.494040 + 0: The maximum resident set size (KB) = 431644 Test 016 control_decomp PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/control_2dwrtdecomp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/control_2dwrtdecomp Checking test 017 control_2dwrtdecomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 161.479572 - 0: The maximum resident set size (KB) = 435188 + 0: The total amount of wall time = 127.872858 + 0: The maximum resident set size (KB) = 435392 Test 017 control_2dwrtdecomp PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/control_2threads +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/control_2threads Checking test 018 control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1004,14 +1004,14 @@ Checking test 018 control_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 176.203118 - 0: The maximum resident set size (KB) = 485880 + 0: The total amount of wall time = 175.118008 + 0: The maximum resident set size (KB) = 487952 Test 018 control_2threads PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/control_restart +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/control_restart Checking test 019 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1050,14 +1050,14 @@ Checking test 019 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 95.295791 - 0: The maximum resident set size (KB) = 170064 + 0: The total amount of wall time = 98.153947 + 0: The maximum resident set size (KB) = 170812 Test 019 control_restart PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/control_fhzero +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/control_fhzero Checking test 020 control_fhzero results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -1100,14 +1100,14 @@ Checking test 020 control_fhzero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 128.176394 - 0: The maximum resident set size (KB) = 435108 + 0: The total amount of wall time = 130.532198 + 0: The maximum resident set size (KB) = 435288 Test 020 control_fhzero PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_CubedSphereGrid -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/control_CubedSphereGrid +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/control_CubedSphereGrid Checking test 021 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1134,14 +1134,14 @@ Checking test 021 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 153.353036 - 0: The maximum resident set size (KB) = 435396 + 0: The total amount of wall time = 130.267746 + 0: The maximum resident set size (KB) = 435180 Test 021 control_CubedSphereGrid PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_latlon -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/control_latlon +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/control_latlon Checking test 022 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1152,14 +1152,14 @@ Checking test 022 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 132.097574 - 0: The maximum resident set size (KB) = 435388 + 0: The total amount of wall time = 159.045340 + 0: The maximum resident set size (KB) = 435340 Test 022 control_latlon PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/control_wrtGauss_netcdf_parallel +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/control_wrtGauss_netcdf_parallel Checking test 023 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc .........OK @@ -1170,14 +1170,14 @@ Checking test 023 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 145.006341 - 0: The maximum resident set size (KB) = 434916 + 0: The total amount of wall time = 162.241165 + 0: The maximum resident set size (KB) = 435360 Test 023 control_wrtGauss_netcdf_parallel PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_c48 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/control_c48 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/control_c48 Checking test 024 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1216,14 +1216,14 @@ Checking test 024 control_c48 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0: The total amount of wall time = 371.356724 -0: The maximum resident set size (KB) = 623252 +0: The total amount of wall time = 366.945019 +0: The maximum resident set size (KB) = 622784 Test 024 control_c48 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_c192 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/control_c192 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/control_c192 Checking test 025 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1234,14 +1234,14 @@ Checking test 025 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 574.782043 - 0: The maximum resident set size (KB) = 535152 + 0: The total amount of wall time = 552.352394 + 0: The maximum resident set size (KB) = 535212 Test 025 control_c192 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_c384 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/control_c384 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/control_c384 Checking test 026 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1252,14 +1252,14 @@ Checking test 026 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 961.168508 - 0: The maximum resident set size (KB) = 794312 + 0: The total amount of wall time = 951.026181 + 0: The maximum resident set size (KB) = 792640 Test 026 control_c384 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_c384gdas -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/control_c384gdas +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/control_c384gdas Checking test 027 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1302,14 +1302,14 @@ Checking test 027 control_c384gdas results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 859.964268 - 0: The maximum resident set size (KB) = 938076 + 0: The total amount of wall time = 852.680183 + 0: The maximum resident set size (KB) = 939832 Test 027 control_c384gdas PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_stochy -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/control_stochy +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/control_stochy Checking test 028 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1320,28 +1320,28 @@ Checking test 028 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 88.410523 - 0: The maximum resident set size (KB) = 436508 + 0: The total amount of wall time = 111.135823 + 0: The maximum resident set size (KB) = 437384 Test 028 control_stochy PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_stochy -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/control_stochy_restart +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/control_stochy_restart Checking test 029 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 = 79.671739 - 0: The maximum resident set size (KB) = 187832 + 0: The total amount of wall time = 48.972298 + 0: The maximum resident set size (KB) = 187216 Test 029 control_stochy_restart PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_lndp -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/control_lndp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/control_lndp Checking test 030 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1352,14 +1352,14 @@ Checking test 030 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 106.057663 - 0: The maximum resident set size (KB) = 438796 + 0: The total amount of wall time = 80.209677 + 0: The maximum resident set size (KB) = 439072 Test 030 control_lndp PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_iovr4 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/control_iovr4 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/control_iovr4 Checking test 031 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1374,14 +1374,14 @@ Checking test 031 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 143.145774 - 0: The maximum resident set size (KB) = 435280 + 0: The total amount of wall time = 133.781648 + 0: The maximum resident set size (KB) = 435380 Test 031 control_iovr4 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_iovr5 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/control_iovr5 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/control_iovr5 Checking test 032 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1396,14 +1396,14 @@ Checking test 032 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 139.695409 - 0: The maximum resident set size (KB) = 435284 + 0: The total amount of wall time = 151.856942 + 0: The maximum resident set size (KB) = 435420 Test 032 control_iovr5 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/control_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/control_p8 Checking test 033 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1450,14 +1450,14 @@ Checking test 033 control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 165.526490 - 0: The maximum resident set size (KB) = 821984 + 0: The total amount of wall time = 162.214325 + 0: The maximum resident set size (KB) = 821648 Test 033 control_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/control_restart_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/control_restart_p8 Checking test 034 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1496,14 +1496,14 @@ Checking test 034 control_restart_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 110.081772 - 0: The maximum resident set size (KB) = 557804 + 0: The total amount of wall time = 87.847750 + 0: The maximum resident set size (KB) = 557812 Test 034 control_restart_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/control_decomp_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/control_decomp_p8 Checking test 035 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1546,14 +1546,14 @@ Checking test 035 control_decomp_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 168.375355 - 0: The maximum resident set size (KB) = 816036 + 0: The total amount of wall time = 167.192906 + 0: The maximum resident set size (KB) = 819496 Test 035 control_decomp_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/control_2threads_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/control_2threads_p8 Checking test 036 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1596,14 +1596,14 @@ Checking test 036 control_2threads_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 213.122255 - 0: The maximum resident set size (KB) = 897372 + 0: The total amount of wall time = 212.856779 + 0: The maximum resident set size (KB) = 897548 Test 036 control_2threads_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_p7_rrtmgp -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/control_p7_rrtmgp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/control_p7_rrtmgp Checking test 037 control_p7_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1650,14 +1650,14 @@ Checking test 037 control_p7_rrtmgp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 206.035681 - 0: The maximum resident set size (KB) = 567416 + 0: The total amount of wall time = 225.437017 + 0: The maximum resident set size (KB) = 564676 Test 037 control_p7_rrtmgp PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/fv3_regional_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/regional_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/regional_control Checking test 038 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1668,42 +1668,42 @@ Checking test 038 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 345.575917 - 0: The maximum resident set size (KB) = 542072 + 0: The total amount of wall time = 346.207935 + 0: The maximum resident set size (KB) = 541024 Test 038 regional_control PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/fv3_regional_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/regional_restart +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/regional_restart Checking test 039 regional_restart results .... Comparing dynf024.nc .........OK Comparing phyf024.nc .........OK Comparing PRSLEV.GrbF24 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 188.709511 - 0: The maximum resident set size (KB) = 541888 + 0: The total amount of wall time = 219.509273 + 0: The maximum resident set size (KB) = 540052 Test 039 regional_restart PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/fv3_regional_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/regional_control_2dwrtdecomp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/regional_control_2dwrtdecomp Checking test 040 regional_control_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK - 0: The total amount of wall time = 345.660246 - 0: The maximum resident set size (KB) = 542144 + 0: The total amount of wall time = 341.306411 + 0: The maximum resident set size (KB) = 541020 Test 040 regional_control_2dwrtdecomp PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/fv3_regional_noquilt -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/regional_noquilt +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/regional_noquilt Checking test 041 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1711,14 +1711,14 @@ Checking test 041 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 363.808818 - 0: The maximum resident set size (KB) = 549428 + 0: The total amount of wall time = 363.194051 + 0: The maximum resident set size (KB) = 547680 Test 041 regional_noquilt PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/fv3_regional_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/regional_2threads +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/regional_2threads Checking test 042 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1729,14 +1729,14 @@ Checking test 042 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 277.278656 - 0: The maximum resident set size (KB) = 543008 + 0: The total amount of wall time = 274.712620 + 0: The maximum resident set size (KB) = 542736 Test 042 regional_2threads PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/fv3_regional_hafs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/regional_hafs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/regional_hafs Checking test 043 regional_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1745,28 +1745,28 @@ Checking test 043 regional_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK - 0: The total amount of wall time = 343.019765 - 0: The maximum resident set size (KB) = 542260 + 0: The total amount of wall time = 342.531388 + 0: The maximum resident set size (KB) = 542824 Test 043 regional_hafs PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/fv3_regional_netcdf_parallel -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/regional_netcdf_parallel +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/regional_netcdf_parallel Checking test 044 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK - 0: The total amount of wall time = 354.398171 - 0: The maximum resident set size (KB) = 541736 + 0: The total amount of wall time = 402.045652 + 0: The maximum resident set size (KB) = 537964 Test 044 regional_netcdf_parallel PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/fv3_regional_RRTMGP -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/regional_RRTMGP +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/regional_RRTMGP Checking test 045 regional_RRTMGP results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1777,14 +1777,14 @@ Checking test 045 regional_RRTMGP results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 482.311143 - 0: The maximum resident set size (KB) = 664428 + 0: The total amount of wall time = 479.599731 + 0: The maximum resident set size (KB) = 665164 Test 045 regional_RRTMGP PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/fv3_regional_3km -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/regional_3km +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/regional_3km Checking test 046 regional_3km results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1795,14 +1795,14 @@ Checking test 046 regional_3km results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 285.480568 - 0: The maximum resident set size (KB) = 570732 + 0: The total amount of wall time = 284.746620 + 0: The maximum resident set size (KB) = 570900 Test 046 regional_3km PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/rap_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/rap_control Checking test 047 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1849,14 +1849,14 @@ Checking test 047 rap_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 412.318268 - 0: The maximum resident set size (KB) = 799676 + 0: The total amount of wall time = 406.479566 + 0: The maximum resident set size (KB) = 802288 Test 047 rap_control PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/regional_spp_sppt_shum_skeb -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/regional_spp_sppt_shum_skeb +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/regional_spp_sppt_shum_skeb Checking test 048 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -1867,14 +1867,14 @@ Checking test 048 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 327.304625 - 0: The maximum resident set size (KB) = 873448 + 0: The total amount of wall time = 325.357990 + 0: The maximum resident set size (KB) = 873984 Test 048 regional_spp_sppt_shum_skeb PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/rap_2threads +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/rap_2threads Checking test 049 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1921,14 +1921,14 @@ Checking test 049 rap_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 540.136529 - 0: The maximum resident set size (KB) = 863956 + 0: The total amount of wall time = 528.389924 + 0: The maximum resident set size (KB) = 864392 Test 049 rap_2threads PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/rap_restart +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/rap_restart Checking test 050 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1967,14 +1967,14 @@ Checking test 050 rap_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 244.266552 - 0: The maximum resident set size (KB) = 544860 + 0: The total amount of wall time = 195.692846 + 0: The maximum resident set size (KB) = 544300 Test 050 rap_restart PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_sfcdiff -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/rap_sfcdiff +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/rap_sfcdiff Checking test 051 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2021,14 +2021,14 @@ Checking test 051 rap_sfcdiff results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 414.400217 - 0: The maximum resident set size (KB) = 799556 + 0: The total amount of wall time = 388.306602 + 0: The maximum resident set size (KB) = 799488 Test 051 rap_sfcdiff PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_sfcdiff -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/rap_sfcdiff_restart +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/rap_sfcdiff_restart Checking test 052 rap_sfcdiff_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2067,14 +2067,14 @@ Checking test 052 rap_sfcdiff_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 250.730291 - 0: The maximum resident set size (KB) = 543480 + 0: The total amount of wall time = 198.238924 + 0: The maximum resident set size (KB) = 544732 Test 052 rap_sfcdiff_restart PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/hrrr_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/hrrr_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/hrrr_control Checking test 053 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2121,14 +2121,14 @@ Checking test 053 hrrr_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 406.424020 - 0: The maximum resident set size (KB) = 798332 + 0: The total amount of wall time = 373.530679 + 0: The maximum resident set size (KB) = 798296 Test 053 hrrr_control PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rrfs_v1beta -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/rrfs_v1beta +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/rrfs_v1beta Checking test 054 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2175,14 +2175,14 @@ Checking test 054 rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 411.129331 - 0: The maximum resident set size (KB) = 796864 + 0: The total amount of wall time = 383.139574 + 0: The maximum resident set size (KB) = 798464 Test 054 rrfs_v1beta PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rrfs_v1nssl -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/rrfs_v1nssl +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/rrfs_v1nssl Checking test 055 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2197,14 +2197,14 @@ Checking test 055 rrfs_v1nssl results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 506.541261 - 0: The maximum resident set size (KB) = 489056 + 0: The total amount of wall time = 505.889055 + 0: The maximum resident set size (KB) = 489084 Test 055 rrfs_v1nssl PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/rrfs_v1nssl_nohailnoccn +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/rrfs_v1nssl_nohailnoccn Checking test 056 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2219,14 +2219,14 @@ Checking test 056 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 467.569931 - 0: The maximum resident set size (KB) = 481096 + 0: The total amount of wall time = 492.343977 + 0: The maximum resident set size (KB) = 481048 Test 056 rrfs_v1nssl_nohailnoccn PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/rrfs_conus13km_hrrr_warm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/rrfs_conus13km_hrrr_warm Checking test 057 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2235,14 +2235,14 @@ Checking test 057 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 192.797154 - 0: The maximum resident set size (KB) = 613164 + 0: The total amount of wall time = 176.837058 + 0: The maximum resident set size (KB) = 613528 Test 057 rrfs_conus13km_hrrr_warm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/rrfs_conus13km_radar_tten_warm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/rrfs_conus13km_radar_tten_warm Checking test 058 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2251,14 +2251,14 @@ Checking test 058 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 177.306870 - 0: The maximum resident set size (KB) = 615916 + 0: The total amount of wall time = 175.918801 + 0: The maximum resident set size (KB) = 615532 Test 058 rrfs_conus13km_radar_tten_warm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_rrtmgp -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/control_rrtmgp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/control_rrtmgp Checking test 059 control_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2269,14 +2269,14 @@ Checking test 059 control_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 248.413063 - 0: The maximum resident set size (KB) = 560420 + 0: The total amount of wall time = 221.820582 + 0: The maximum resident set size (KB) = 560740 Test 059 control_rrtmgp PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_rrtmgp_c192 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/control_rrtmgp_c192 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/control_rrtmgp_c192 Checking test 060 control_rrtmgp_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2287,14 +2287,14 @@ Checking test 060 control_rrtmgp_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 613.696493 - 0: The maximum resident set size (KB) = 762620 + 0: The total amount of wall time = 616.030426 + 0: The maximum resident set size (KB) = 760820 Test 060 control_rrtmgp_c192 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_csawmgt -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/control_csawmgt +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/control_csawmgt Checking test 061 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2305,14 +2305,14 @@ Checking test 061 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 350.957486 - 0: The maximum resident set size (KB) = 500580 + 0: The total amount of wall time = 351.886725 + 0: The maximum resident set size (KB) = 501616 Test 061 control_csawmgt PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_flake -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/control_flake +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/control_flake Checking test 062 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2323,14 +2323,14 @@ Checking test 062 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 251.030342 - 0: The maximum resident set size (KB) = 505440 + 0: The total amount of wall time = 252.161568 + 0: The maximum resident set size (KB) = 505812 Test 062 control_flake PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_ras -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/control_ras +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/control_ras Checking test 063 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2341,14 +2341,14 @@ Checking test 063 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 210.369351 - 0: The maximum resident set size (KB) = 469868 + 0: The total amount of wall time = 187.173469 + 0: The maximum resident set size (KB) = 470472 Test 063 control_ras PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_thompson -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/control_thompson +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/control_thompson Checking test 064 control_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2359,14 +2359,14 @@ Checking test 064 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 232.989534 - 0: The maximum resident set size (KB) = 816616 + 0: The total amount of wall time = 232.326127 + 0: The maximum resident set size (KB) = 818508 Test 064 control_thompson PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_thompson_no_aero -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/control_thompson_no_aero +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/control_thompson_no_aero Checking test 065 control_thompson_no_aero results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2377,54 +2377,54 @@ Checking test 065 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 246.126940 - 0: The maximum resident set size (KB) = 810220 + 0: The total amount of wall time = 220.241911 + 0: The maximum resident set size (KB) = 811068 Test 065 control_thompson_no_aero PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_wam_repro -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/control_wam_repro +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/control_wam_repro Checking test 066 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 148.612817 - 0: The maximum resident set size (KB) = 182324 + 0: The total amount of wall time = 148.027025 + 0: The maximum resident set size (KB) = 181888 Test 066 control_wam PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/control_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/control_debug Checking test 067 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 = 152.106399 - 0: The maximum resident set size (KB) = 598236 + 0: The total amount of wall time = 149.159422 + 0: The maximum resident set size (KB) = 599472 Test 067 control_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/control_2threads_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/control_2threads_debug Checking test 068 control_2threads_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 258.031036 - 0: The maximum resident set size (KB) = 650152 + 0: The total amount of wall time = 256.953134 + 0: The maximum resident set size (KB) = 652108 Test 068 control_2threads_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_CubedSphereGrid_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/control_CubedSphereGrid_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/control_CubedSphereGrid_debug Checking test 069 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2451,428 +2451,428 @@ Checking test 069 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 160.291976 - 0: The maximum resident set size (KB) = 598032 + 0: The total amount of wall time = 159.171261 + 0: The maximum resident set size (KB) = 598784 Test 069 control_CubedSphereGrid_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/control_wrtGauss_netcdf_parallel_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/control_wrtGauss_netcdf_parallel_debug Checking test 070 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 161.221574 - 0: The maximum resident set size (KB) = 597960 + 0: The total amount of wall time = 178.657606 + 0: The maximum resident set size (KB) = 599512 Test 070 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_stochy_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/control_stochy_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/control_stochy_debug Checking test 071 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 = 173.102736 - 0: The maximum resident set size (KB) = 602144 + 0: The total amount of wall time = 171.827552 + 0: The maximum resident set size (KB) = 603008 Test 071 control_stochy_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_lndp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/control_lndp_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/control_lndp_debug Checking test 072 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 = 155.270187 - 0: The maximum resident set size (KB) = 603452 + 0: The total amount of wall time = 154.710871 + 0: The maximum resident set size (KB) = 603088 Test 072 control_lndp_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_rrtmgp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/control_rrtmgp_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/control_rrtmgp_debug Checking test 073 control_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 166.591360 - 0: The maximum resident set size (KB) = 703000 + 0: The total amount of wall time = 173.554382 + 0: The maximum resident set size (KB) = 702404 Test 073 control_rrtmgp_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_csawmg_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/control_csawmg_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/control_csawmg_debug Checking test 074 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 244.929104 - 0: The maximum resident set size (KB) = 640508 + 0: The total amount of wall time = 244.866677 + 0: The maximum resident set size (KB) = 641400 Test 074 control_csawmg_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_csawmgt_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/control_csawmgt_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/control_csawmgt_debug Checking test 075 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 253.434914 - 0: The maximum resident set size (KB) = 640620 + 0: The total amount of wall time = 283.833944 + 0: The maximum resident set size (KB) = 641000 Test 075 control_csawmgt_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_ras_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/control_ras_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/control_ras_debug Checking test 076 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 155.443257 - 0: The maximum resident set size (KB) = 610336 + 0: The total amount of wall time = 155.737128 + 0: The maximum resident set size (KB) = 614472 Test 076 control_ras_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_diag_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/control_diag_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/control_diag_debug Checking test 077 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 = 189.808100 - 0: The maximum resident set size (KB) = 655124 + 0: The total amount of wall time = 158.128618 + 0: The maximum resident set size (KB) = 655732 Test 077 control_diag_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_debug_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/control_debug_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/control_debug_p8 Checking test 078 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 = 166.859207 - 0: The maximum resident set size (KB) = 985876 + 0: The total amount of wall time = 168.789340 + 0: The maximum resident set size (KB) = 985664 Test 078 control_debug_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_thompson_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/control_thompson_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/control_thompson_debug Checking test 079 control_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 179.620517 - 0: The maximum resident set size (KB) = 959688 + 0: The total amount of wall time = 180.578240 + 0: The maximum resident set size (KB) = 960336 Test 079 control_thompson_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_thompson_no_aero_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/control_thompson_no_aero_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/control_thompson_no_aero_debug Checking test 080 control_thompson_no_aero_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 169.284553 - 0: The maximum resident set size (KB) = 953352 + 0: The total amount of wall time = 174.014260 + 0: The maximum resident set size (KB) = 954164 Test 080 control_thompson_no_aero_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_thompson_debug_extdiag -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/control_thompson_extdiag_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/control_thompson_extdiag_debug Checking test 081 control_thompson_extdiag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 184.689373 - 0: The maximum resident set size (KB) = 986564 + 0: The total amount of wall time = 187.039368 + 0: The maximum resident set size (KB) = 989276 Test 081 control_thompson_extdiag_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_thompson_progcld_thompson_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/control_thompson_progcld_thompson_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/control_thompson_progcld_thompson_debug Checking test 082 control_thompson_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 179.537947 - 0: The maximum resident set size (KB) = 959968 + 0: The total amount of wall time = 180.054907 + 0: The maximum resident set size (KB) = 957160 Test 082 control_thompson_progcld_thompson_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/fv3_regional_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/regional_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/regional_debug Checking test 083 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 = 257.783406 - 0: The maximum resident set size (KB) = 568272 + 0: The total amount of wall time = 260.203236 + 0: The maximum resident set size (KB) = 565636 Test 083 regional_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_control_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/rap_control_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/rap_control_debug Checking test 084 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 = 279.586580 - 0: The maximum resident set size (KB) = 964816 + 0: The total amount of wall time = 280.441291 + 0: The maximum resident set size (KB) = 963992 Test 084 rap_control_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_control_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/rap_unified_drag_suite_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/rap_unified_drag_suite_debug Checking test 085 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 305.840423 - 0: The maximum resident set size (KB) = 964764 + 0: The total amount of wall time = 301.219409 + 0: The maximum resident set size (KB) = 963828 Test 085 rap_unified_drag_suite_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_diag_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/rap_diag_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/rap_diag_debug Checking test 086 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 292.447753 - 0: The maximum resident set size (KB) = 1047296 + 0: The total amount of wall time = 295.220597 + 0: The maximum resident set size (KB) = 1047540 Test 086 rap_diag_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_cires_ugwp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/rap_cires_ugwp_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/rap_cires_ugwp_debug Checking test 087 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 282.578107 - 0: The maximum resident set size (KB) = 969184 + 0: The total amount of wall time = 284.242885 + 0: The maximum resident set size (KB) = 969600 Test 087 rap_cires_ugwp_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_cires_ugwp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/rap_unified_ugwp_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/rap_unified_ugwp_debug Checking test 088 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 285.591834 - 0: The maximum resident set size (KB) = 964572 + 0: The total amount of wall time = 285.518986 + 0: The maximum resident set size (KB) = 964020 Test 088 rap_unified_ugwp_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_lndp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/rap_lndp_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/rap_lndp_debug Checking test 089 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 281.481054 - 0: The maximum resident set size (KB) = 965360 + 0: The total amount of wall time = 282.827656 + 0: The maximum resident set size (KB) = 968176 Test 089 rap_lndp_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_flake_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/rap_flake_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/rap_flake_debug Checking test 090 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 = 276.796755 - 0: The maximum resident set size (KB) = 964600 + 0: The total amount of wall time = 278.474028 + 0: The maximum resident set size (KB) = 963888 Test 090 rap_flake_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_progcld_thompson_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/rap_progcld_thompson_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/rap_progcld_thompson_debug Checking test 091 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 278.518958 - 0: The maximum resident set size (KB) = 964676 + 0: The total amount of wall time = 281.502372 + 0: The maximum resident set size (KB) = 963816 Test 091 rap_progcld_thompson_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_noah_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/rap_noah_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/rap_noah_debug Checking test 092 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 = 272.140990 - 0: The maximum resident set size (KB) = 963000 + 0: The total amount of wall time = 275.500189 + 0: The maximum resident set size (KB) = 963292 Test 092 rap_noah_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_rrtmgp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/rap_rrtmgp_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/rap_rrtmgp_debug Checking test 093 rap_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 474.553969 - 0: The maximum resident set size (KB) = 1072088 + 0: The total amount of wall time = 475.922825 + 0: The maximum resident set size (KB) = 1069992 Test 093 rap_rrtmgp_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_sfcdiff_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/rap_sfcdiff_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/rap_sfcdiff_debug Checking test 094 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 = 277.514678 - 0: The maximum resident set size (KB) = 964588 + 0: The total amount of wall time = 280.267860 + 0: The maximum resident set size (KB) = 963848 Test 094 rap_sfcdiff_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/rap_noah_sfcdiff_cires_ugwp_debug Checking test 095 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 = 464.397353 - 0: The maximum resident set size (KB) = 964876 + 0: The total amount of wall time = 465.421887 + 0: The maximum resident set size (KB) = 965688 Test 095 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rrfs_v1beta_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/rrfs_v1beta_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/rrfs_v1beta_debug Checking test 096 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 = 274.539549 - 0: The maximum resident set size (KB) = 962788 + 0: The total amount of wall time = 278.273796 + 0: The maximum resident set size (KB) = 964364 Test 096 rrfs_v1beta_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_wam_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/control_wam_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/control_wam_debug Checking test 097 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 291.068094 - 0: The maximum resident set size (KB) = 212108 + 0: The total amount of wall time = 291.087163 + 0: The maximum resident set size (KB) = 212240 Test 097 control_wam_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/hafs_regional_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/hafs_regional_atm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/hafs_regional_atm Checking test 098 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 289.810677 - 0: The maximum resident set size (KB) = 665896 + 0: The total amount of wall time = 360.913375 + 0: The maximum resident set size (KB) = 659772 Test 098 hafs_regional_atm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/hafs_regional_atm_thompson_gfdlsf +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/hafs_regional_atm_thompson_gfdlsf Checking test 099 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 363.403192 - 0: The maximum resident set size (KB) = 1019152 + 0: The total amount of wall time = 383.677054 + 0: The maximum resident set size (KB) = 1019048 Test 099 hafs_regional_atm_thompson_gfdlsf PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/hafs_regional_atm_ocn -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/hafs_regional_atm_ocn +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/hafs_regional_atm_ocn Checking test 100 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -2881,28 +2881,28 @@ Checking test 100 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 = 381.186982 - 0: The maximum resident set size (KB) = 665340 + 0: The total amount of wall time = 433.552816 + 0: The maximum resident set size (KB) = 662420 Test 100 hafs_regional_atm_ocn PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/hafs_regional_atm_wav -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/hafs_regional_atm_wav +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/hafs_regional_atm_wav Checking test 101 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 862.232909 - 0: The maximum resident set size (KB) = 666516 + 0: The total amount of wall time = 901.557665 + 0: The maximum resident set size (KB) = 664444 Test 101 hafs_regional_atm_wav PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/hafs_regional_atm_ocn_wav -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/hafs_regional_atm_ocn_wav +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/hafs_regional_atm_ocn_wav Checking test 102 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -2911,58 +2911,58 @@ Checking test 102 hafs_regional_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 953.885455 - 0: The maximum resident set size (KB) = 664316 + 0: The total amount of wall time = 982.109506 + 0: The maximum resident set size (KB) = 666376 Test 102 hafs_regional_atm_ocn_wav PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/hafs_regional_1nest_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/hafs_regional_1nest_atm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/hafs_regional_1nest_atm Checking test 103 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 = 530.581503 - 0: The maximum resident set size (KB) = 261100 + 0: The total amount of wall time = 593.766662 + 0: The maximum resident set size (KB) = 260536 Test 103 hafs_regional_1nest_atm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/hafs_regional_telescopic_2nests_atm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/hafs_regional_telescopic_2nests_atm Checking test 104 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK Comparing atm.nest03.f006.nc .........OK - Comparing sfc.nest03.f006.nc ............ALT CHECK......OK + Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 553.679871 - 0: The maximum resident set size (KB) = 265444 + 0: The total amount of wall time = 627.123193 + 0: The maximum resident set size (KB) = 266344 Test 104 hafs_regional_telescopic_2nests_atm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/hafs_global_1nest_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/hafs_global_1nest_atm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/hafs_global_1nest_atm Checking test 105 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 = 240.349796 - 0: The maximum resident set size (KB) = 162424 + 0: The total amount of wall time = 312.412751 + 0: The maximum resident set size (KB) = 165412 Test 105 hafs_global_1nest_atm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/hafs_global_multiple_4nests_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/hafs_global_multiple_4nests_atm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/hafs_global_multiple_4nests_atm Checking test 106 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -2975,14 +2975,14 @@ Checking test 106 hafs_global_multiple_4nests_atm results .... Comparing atm.nest05.f006.nc .........OK Comparing sfc.nest05.f006.nc .........OK - 0: The total amount of wall time = 687.177217 - 0: The maximum resident set size (KB) = 235436 + 0: The total amount of wall time = 774.448719 + 0: The maximum resident set size (KB) = 234796 Test 106 hafs_global_multiple_4nests_atm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/hafs_regional_docn -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/hafs_regional_docn +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/hafs_regional_docn Checking test 107 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -2990,14 +2990,14 @@ Checking test 107 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 = 361.923187 - 0: The maximum resident set size (KB) = 664240 + 0: The total amount of wall time = 409.809641 + 0: The maximum resident set size (KB) = 665552 Test 107 hafs_regional_docn PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/hafs_regional_docn_oisst -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/hafs_regional_docn_oisst +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/hafs_regional_docn_oisst Checking test 108 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3005,118 +3005,118 @@ Checking test 108 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 = 362.446097 - 0: The maximum resident set size (KB) = 664032 + 0: The total amount of wall time = 401.117331 + 0: The maximum resident set size (KB) = 665372 Test 108 hafs_regional_docn_oisst PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/hafs_regional_datm_cdeps -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/hafs_regional_datm_cdeps +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/hafs_regional_datm_cdeps Checking test 109 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 = 1045.317326 - 0: The maximum resident set size (KB) = 807140 + 0: The total amount of wall time = 1040.697554 + 0: The maximum resident set size (KB) = 807192 Test 109 hafs_regional_datm_cdeps PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_control_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/datm_cdeps_control_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/datm_cdeps_control_cfsr Checking test 110 datm_cdeps_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 146.959522 - 0: The maximum resident set size (KB) = 683268 + 0: The total amount of wall time = 148.551203 + 0: The maximum resident set size (KB) = 683280 Test 110 datm_cdeps_control_cfsr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_control_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/datm_cdeps_restart_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/datm_cdeps_restart_cfsr Checking test 111 datm_cdeps_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 86.765152 - 0: The maximum resident set size (KB) = 689044 + 0: The total amount of wall time = 86.982714 + 0: The maximum resident set size (KB) = 664024 Test 111 datm_cdeps_restart_cfsr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_control_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/datm_cdeps_control_gefs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/datm_cdeps_control_gefs Checking test 112 datm_cdeps_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 143.570440 - 0: The maximum resident set size (KB) = 563724 + 0: The total amount of wall time = 149.905423 + 0: The maximum resident set size (KB) = 565568 Test 112 datm_cdeps_control_gefs PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_iau_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/datm_cdeps_iau_gefs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/datm_cdeps_iau_gefs Checking test 113 datm_cdeps_iau_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 164.053813 - 0: The maximum resident set size (KB) = 563864 + 0: The total amount of wall time = 145.512336 + 0: The maximum resident set size (KB) = 565768 Test 113 datm_cdeps_iau_gefs PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_stochy_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/datm_cdeps_stochy_gefs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/datm_cdeps_stochy_gefs Checking test 114 datm_cdeps_stochy_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 195.368748 - 0: The maximum resident set size (KB) = 563532 + 0: The total amount of wall time = 146.933544 + 0: The maximum resident set size (KB) = 567592 Test 114 datm_cdeps_stochy_gefs PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_bulk_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/datm_cdeps_bulk_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/datm_cdeps_bulk_cfsr Checking test 115 datm_cdeps_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 167.492557 - 0: The maximum resident set size (KB) = 683528 + 0: The total amount of wall time = 146.576403 + 0: The maximum resident set size (KB) = 683428 Test 115 datm_cdeps_bulk_cfsr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_bulk_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/datm_cdeps_bulk_gefs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/datm_cdeps_bulk_gefs Checking test 116 datm_cdeps_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 142.545202 - 0: The maximum resident set size (KB) = 567460 + 0: The total amount of wall time = 142.526358 + 0: The maximum resident set size (KB) = 565584 Test 116 datm_cdeps_bulk_gefs PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_mx025_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/datm_cdeps_mx025_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/datm_cdeps_mx025_cfsr Checking test 117 datm_cdeps_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -3125,14 +3125,14 @@ Checking test 117 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 = 351.296004 - 0: The maximum resident set size (KB) = 482620 + 0: The total amount of wall time = 347.613504 + 0: The maximum resident set size (KB) = 487304 Test 117 datm_cdeps_mx025_cfsr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_mx025_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/datm_cdeps_mx025_gefs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/datm_cdeps_mx025_gefs Checking test 118 datm_cdeps_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -3141,64 +3141,64 @@ Checking test 118 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 378.080029 - 0: The maximum resident set size (KB) = 449792 + 0: The total amount of wall time = 372.155640 + 0: The maximum resident set size (KB) = 449032 Test 118 datm_cdeps_mx025_gefs PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_control_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/datm_cdeps_multiple_files_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/datm_cdeps_multiple_files_cfsr Checking test 119 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 = 157.472474 - 0: The maximum resident set size (KB) = 683380 + 0: The total amount of wall time = 148.571311 + 0: The maximum resident set size (KB) = 683352 Test 119 datm_cdeps_multiple_files_cfsr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/datm_cdeps_3072x1536_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/datm_cdeps_3072x1536_cfsr Checking test 120 datm_cdeps_3072x1536_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 200.241766 - 0: The maximum resident set size (KB) = 1835908 + 0: The total amount of wall time = 200.089841 + 0: The maximum resident set size (KB) = 1835848 Test 120 datm_cdeps_3072x1536_cfsr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_gfs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/datm_cdeps_gfs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/datm_cdeps_gfs Checking test 121 datm_cdeps_gfs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 203.428106 - 0: The maximum resident set size (KB) = 1835632 + 0: The total amount of wall time = 206.021389 + 0: The maximum resident set size (KB) = 1835784 Test 121 datm_cdeps_gfs PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_debug_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/datm_cdeps_debug_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/datm_cdeps_debug_cfsr Checking test 122 datm_cdeps_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 393.479168 - 0: The maximum resident set size (KB) = 680980 + 0: The total amount of wall time = 366.645640 + 0: The maximum resident set size (KB) = 680900 Test 122 datm_cdeps_debug_cfsr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_atmwav -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/control_atmwav +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/control_atmwav Checking test 123 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -3242,14 +3242,14 @@ Checking test 123 control_atmwav results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 105.639764 - 0: The maximum resident set size (KB) = 445592 + 0: The total amount of wall time = 115.270752 + 0: The maximum resident set size (KB) = 445680 Test 123 control_atmwav PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_c384gdas_wav -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_3924/control_c384gdas_wav +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_46246/control_c384gdas_wav Checking test 124 control_c384gdas_wav results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -3295,12 +3295,12 @@ Checking test 124 control_c384gdas_wav results .... Comparing 20210322.030000.restart.gnh_10m .........OK Comparing 20210322.030000.restart.gsh_15m .........OK - 0: The total amount of wall time = 1536.106947 - 0: The maximum resident set size (KB) = 960900 + 0: The total amount of wall time = 1521.574931 + 0: The maximum resident set size (KB) = 959336 Test 124 control_c384gdas_wav PASS REGRESSION TEST WAS SUCCESSFUL -Fri Apr 1 14:50:16 EDT 2022 -Elapsed time: 01h:19m:18s. Have a nice day! +Mon Apr 4 13:06:56 EDT 2022 +Elapsed time: 01h:30m:52s. Have a nice day! diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index 692c32c5c8..7057902ab1 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,16 +1,16 @@ -Fri Apr 1 19:39:12 UTC 2022 +Mon Apr 4 15:47:53 UTC 2022 Start Regression test -Compile 001 elapsed time 195 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_thompson,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 002 elapsed time 191 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 003 elapsed time 296 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 004 elapsed time 97 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 219 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 006 elapsed time 116 seconds. -DAPP=S2S -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 007 elapsed time 109 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 001 elapsed time 196 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_thompson,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 002 elapsed time 189 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 003 elapsed time 294 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 004 elapsed time 95 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 222 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 006 elapsed time 115 seconds. -DAPP=S2S -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 007 elapsed time 107 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/GNU/control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29436/control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2945/control Checking test 001 control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -57,14 +57,14 @@ Checking test 001 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 774.632629 - 0: The maximum resident set size (KB) = 474692 + 0: The total amount of wall time = 809.480382 + 0: The maximum resident set size (KB) = 481828 Test 001 control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/GNU/control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29436/control_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2945/control_restart Checking test 002 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -103,14 +103,14 @@ Checking test 002 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 387.558367 - 0: The maximum resident set size (KB) = 184412 + 0: The total amount of wall time = 384.872815 + 0: The maximum resident set size (KB) = 178168 Test 002 control_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/GNU/control_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29436/control_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2945/control_c48 Checking test 003 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -149,14 +149,14 @@ Checking test 003 control_c48 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0: The total amount of wall time = 669.413622 -0: The maximum resident set size (KB) = 692260 +0: The total amount of wall time = 674.748845 +0: The maximum resident set size (KB) = 687404 Test 003 control_c48 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/GNU/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29436/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2945/control_stochy Checking test 004 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -167,14 +167,14 @@ Checking test 004 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 613.844435 - 0: The maximum resident set size (KB) = 482296 + 0: The total amount of wall time = 639.703780 + 0: The maximum resident set size (KB) = 480136 Test 004 control_stochy PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/GNU/control_flake -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29436/control_flake +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2945/control_flake Checking test 005 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -185,14 +185,14 @@ Checking test 005 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 1361.281859 - 0: The maximum resident set size (KB) = 529680 + 0: The total amount of wall time = 1369.900866 + 0: The maximum resident set size (KB) = 523176 Test 005 control_flake PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/GNU/control_rrtmgp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29436/control_rrtmgp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2945/control_rrtmgp Checking test 006 control_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -203,14 +203,14 @@ Checking test 006 control_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 843.314867 - 0: The maximum resident set size (KB) = 573784 + 0: The total amount of wall time = 822.726857 + 0: The maximum resident set size (KB) = 578236 Test 006 control_rrtmgp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/GNU/control_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29436/control_thompson +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2945/control_thompson Checking test 007 control_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -221,14 +221,14 @@ Checking test 007 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 993.206055 - 0: The maximum resident set size (KB) = 846460 + 0: The total amount of wall time = 973.509567 + 0: The maximum resident set size (KB) = 843932 Test 007 control_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/GNU/control_thompson_no_aero -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29436/control_thompson_no_aero +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2945/control_thompson_no_aero Checking test 008 control_thompson_no_aero results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -239,14 +239,14 @@ Checking test 008 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 956.768339 - 0: The maximum resident set size (KB) = 833552 + 0: The total amount of wall time = 967.754557 + 0: The maximum resident set size (KB) = 839528 Test 008 control_thompson_no_aero PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/GNU/control_ras -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29436/control_ras +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2945/control_ras Checking test 009 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -257,14 +257,14 @@ Checking test 009 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 809.866575 - 0: The maximum resident set size (KB) = 490036 + 0: The total amount of wall time = 833.941719 + 0: The maximum resident set size (KB) = 491180 Test 009 control_ras PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/GNU/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29436/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2945/control_p8 Checking test 010 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -311,14 +311,14 @@ Checking test 010 control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 858.718863 - 0: The maximum resident set size (KB) = 834840 + 0: The total amount of wall time = 850.520820 + 0: The maximum resident set size (KB) = 835960 Test 010 control_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29436/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2945/rap_control Checking test 011 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -365,14 +365,14 @@ Checking test 011 rap_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1375.595631 - 0: The maximum resident set size (KB) = 829056 + 0: The total amount of wall time = 1381.118559 + 0: The maximum resident set size (KB) = 831736 Test 011 rap_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29436/rap_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2945/rap_2threads Checking test 012 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -419,14 +419,14 @@ Checking test 012 rap_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1361.887539 - 0: The maximum resident set size (KB) = 892976 + 0: The total amount of wall time = 1398.390765 + 0: The maximum resident set size (KB) = 894496 Test 012 rap_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29436/rap_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2945/rap_restart Checking test 013 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -465,14 +465,14 @@ Checking test 013 rap_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 649.055903 - 0: The maximum resident set size (KB) = 541056 + 0: The total amount of wall time = 672.893966 + 0: The maximum resident set size (KB) = 542536 Test 013 rap_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29436/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2945/rap_sfcdiff Checking test 014 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -519,14 +519,14 @@ Checking test 014 rap_sfcdiff results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1368.916987 - 0: The maximum resident set size (KB) = 828488 + 0: The total amount of wall time = 1338.417918 + 0: The maximum resident set size (KB) = 825920 Test 014 rap_sfcdiff PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29436/rap_sfcdiff_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2945/rap_sfcdiff_restart Checking test 015 rap_sfcdiff_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -565,14 +565,14 @@ Checking test 015 rap_sfcdiff_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 678.587754 - 0: The maximum resident set size (KB) = 540916 + 0: The total amount of wall time = 685.869582 + 0: The maximum resident set size (KB) = 538348 Test 015 rap_sfcdiff_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29436/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2945/hrrr_control Checking test 016 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -619,14 +619,14 @@ Checking test 016 hrrr_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1345.241167 - 0: The maximum resident set size (KB) = 824852 + 0: The total amount of wall time = 1367.705643 + 0: The maximum resident set size (KB) = 828508 Test 016 hrrr_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/GNU/rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29436/rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2945/rrfs_v1beta Checking test 017 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -673,14 +673,14 @@ Checking test 017 rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1357.260534 - 0: The maximum resident set size (KB) = 827416 + 0: The total amount of wall time = 1365.794118 + 0: The maximum resident set size (KB) = 826840 Test 017 rrfs_v1beta PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/GNU/rrfs_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29436/rrfs_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2945/rrfs_conus13km_hrrr_warm Checking test 018 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -689,14 +689,14 @@ Checking test 018 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 1539.195042 - 0: The maximum resident set size (KB) = 635480 + 0: The total amount of wall time = 1497.934564 + 0: The maximum resident set size (KB) = 632628 Test 018 rrfs_conus13km_hrrr_warm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/GNU/rrfs_conus13km_radar_tten_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29436/rrfs_conus13km_radar_tten_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2945/rrfs_conus13km_radar_tten_warm Checking test 019 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -705,250 +705,250 @@ Checking test 019 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 1561.178211 - 0: The maximum resident set size (KB) = 637492 + 0: The total amount of wall time = 1535.439614 + 0: The maximum resident set size (KB) = 641340 Test 019 rrfs_conus13km_radar_tten_warm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/GNU/control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29436/control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2945/control_debug Checking test 020 control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 99.289775 - 0: The maximum resident set size (KB) = 481960 + 0: The total amount of wall time = 98.454724 + 0: The maximum resident set size (KB) = 481928 Test 020 control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/GNU/control_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29436/control_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2945/control_diag_debug Checking test 021 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 125.085237 - 0: The maximum resident set size (KB) = 539308 + 0: The total amount of wall time = 126.930587 + 0: The maximum resident set size (KB) = 536948 Test 021 control_diag_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/GNU/fv3_regional_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29436/regional_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2945/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 = 126.603427 - 0: The maximum resident set size (KB) = 552924 + 0: The total amount of wall time = 124.549141 + 0: The maximum resident set size (KB) = 554112 Test 022 regional_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/GNU/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29436/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2945/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 = 166.625224 - 0: The maximum resident set size (KB) = 850804 + 0: The total amount of wall time = 166.160130 + 0: The maximum resident set size (KB) = 848488 Test 023 rap_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/GNU/rap_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29436/rap_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2945/rap_diag_debug Checking test 024 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 205.620367 - 0: The maximum resident set size (KB) = 932072 + 0: The total amount of wall time = 208.334279 + 0: The maximum resident set size (KB) = 933704 Test 024 rap_diag_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/GNU/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29436/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2945/rap_noah_sfcdiff_cires_ugwp_debug Checking test 025 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 262.880783 - 0: The maximum resident set size (KB) = 846240 + 0: The total amount of wall time = 259.300171 + 0: The maximum resident set size (KB) = 848200 Test 025 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/GNU/rap_progcld_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29436/rap_progcld_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2945/rap_progcld_thompson_debug Checking test 026 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 167.769304 - 0: The maximum resident set size (KB) = 849000 + 0: The total amount of wall time = 166.893489 + 0: The maximum resident set size (KB) = 853484 Test 026 rap_progcld_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/GNU/rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29436/rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2945/rrfs_v1beta_debug Checking test 027 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 168.394930 - 0: The maximum resident set size (KB) = 848000 + 0: The total amount of wall time = 165.234470 + 0: The maximum resident set size (KB) = 849820 Test 027 rrfs_v1beta_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/GNU/control_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29436/control_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2945/control_thompson_debug Checking test 028 control_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 112.685124 - 0: The maximum resident set size (KB) = 839468 + 0: The total amount of wall time = 111.649440 + 0: The maximum resident set size (KB) = 846080 Test 028 control_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/GNU/control_thompson_no_aero_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29436/control_thompson_no_aero_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2945/control_thompson_no_aero_debug Checking test 029 control_thompson_no_aero_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 109.753560 - 0: The maximum resident set size (KB) = 833984 + 0: The total amount of wall time = 113.212769 + 0: The maximum resident set size (KB) = 837244 Test 029 control_thompson_no_aero_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/GNU/control_thompson_debug_extdiag -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29436/control_thompson_extdiag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2945/control_thompson_extdiag_debug Checking test 030 control_thompson_extdiag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 134.044924 - 0: The maximum resident set size (KB) = 871304 + 0: The total amount of wall time = 130.534098 + 0: The maximum resident set size (KB) = 872824 Test 030 control_thompson_extdiag_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/GNU/control_thompson_progcld_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29436/control_thompson_progcld_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2945/control_thompson_progcld_thompson_debug Checking test 031 control_thompson_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 110.827711 - 0: The maximum resident set size (KB) = 842280 + 0: The total amount of wall time = 113.473672 + 0: The maximum resident set size (KB) = 845712 Test 031 control_thompson_progcld_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/GNU/control_rrtmgp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29436/control_rrtmgp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2945/control_rrtmgp_debug Checking test 032 control_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 105.368863 - 0: The maximum resident set size (KB) = 574936 + 0: The total amount of wall time = 106.166099 + 0: The maximum resident set size (KB) = 581648 Test 032 control_rrtmgp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/GNU/control_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29436/control_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2945/control_ras_debug Checking test 033 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 101.431802 - 0: The maximum resident set size (KB) = 490108 + 0: The total amount of wall time = 100.790348 + 0: The maximum resident set size (KB) = 492892 Test 033 control_ras_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/GNU/control_stochy_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29436/control_stochy_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2945/control_stochy_debug Checking test 034 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 113.733976 - 0: The maximum resident set size (KB) = 486456 + 0: The total amount of wall time = 116.770739 + 0: The maximum resident set size (KB) = 486804 Test 034 control_stochy_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/GNU/control_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29436/control_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2945/control_debug_p8 Checking test 035 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 108.010986 - 0: The maximum resident set size (KB) = 834996 + 0: The total amount of wall time = 110.928520 + 0: The maximum resident set size (KB) = 839904 Test 035 control_debug_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/GNU/control_wam_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29436/control_wam_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2945/control_wam_debug Checking test 036 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 180.541896 - 0: The maximum resident set size (KB) = 194644 + 0: The total amount of wall time = 176.678048 + 0: The maximum resident set size (KB) = 193296 Test 036 control_wam_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/GNU/cpld_control_c96_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29436/cpld_control_c96_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2945/cpld_control_c96_noaero_p8 Checking test 037 cpld_control_c96_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1010,14 +1010,14 @@ Checking test 037 cpld_control_c96_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 1121.413764 - 0: The maximum resident set size (KB) = 857624 + 0: The total amount of wall time = 1140.923412 + 0: The maximum resident set size (KB) = 856236 Test 037 cpld_control_c96_noaero_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/GNU/cpld_debug_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29436/cpld_debug_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2945/cpld_debug_noaero_p8 Checking test 038 cpld_debug_noaero_p8 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1067,25 +1067,25 @@ Checking test 038 cpld_debug_noaero_p8 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK - 0: The total amount of wall time = 577.559405 - 0: The maximum resident set size (KB) = 865504 + 0: The total amount of wall time = 581.696178 + 0: The maximum resident set size (KB) = 866916 Test 038 cpld_debug_noaero_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/GNU/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29436/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2945/datm_cdeps_control_cfsr Checking test 039 datm_cdeps_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 165.006705 - 0: The maximum resident set size (KB) = 626176 + 0: The total amount of wall time = 164.255445 + 0: The maximum resident set size (KB) = 628908 Test 039 datm_cdeps_control_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Fri Apr 1 20:29:32 UTC 2022 -Elapsed time: 00h:50m:20s. Have a nice day! +Mon Apr 4 16:38:14 UTC 2022 +Elapsed time: 00h:50m:22s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index 5d4446cc82..f17d6edb40 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,25 +1,25 @@ -Fri Apr 1 17:23:48 UTC 2022 +Mon Apr 4 15:32:47 UTC 2022 Start Regression test -Compile 001 elapsed time 448 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1,FV3_GFS_v16_coupled_p7_rrtmgp,FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 201 seconds. -DAPP=S2SA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 003 elapsed time 326 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP,FV3_GFS_v16_p7_rrtmgp,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 004 elapsed time 305 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 005 elapsed time 320 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 281 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DREPRO=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -Compile 007 elapsed time 200 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp,FV3_GFS_v16_thompson,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 156 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP,FV3_RAP_cires_ugwp,FV3_RAP_unified_ugwp,FV3_RAP_flake -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 162 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP_noah,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 010 elapsed time 150 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 011 elapsed time 369 seconds. -DAPP=HAFSW -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 392 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 185 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 014 elapsed time 98 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 015 elapsed time 310 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 016 elapsed time 323 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v16 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 001 elapsed time 969 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1,FV3_GFS_v16_coupled_p7_rrtmgp,FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 216 seconds. -DAPP=S2SA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 003 elapsed time 984 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP,FV3_GFS_v16_p7_rrtmgp,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 004 elapsed time 1106 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 005 elapsed time 550 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 1321 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DREPRO=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit +Compile 007 elapsed time 428 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp,FV3_GFS_v16_thompson,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 640 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP,FV3_RAP_cires_ugwp,FV3_RAP_unified_ugwp,FV3_RAP_flake -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 328 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP_noah,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 010 elapsed time 672 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 011 elapsed time 767 seconds. -DAPP=HAFSW -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 959 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 547 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 014 elapsed time 519 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 015 elapsed time 488 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 016 elapsed time 612 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v16 -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/cpld_control_p8 Checking test 001 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -85,14 +85,14 @@ Checking test 001 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK - 0: The total amount of wall time = 337.667528 - 0: The maximum resident set size (KB) = 1127164 + 0: The total amount of wall time = 338.363826 + 0: The maximum resident set size (KB) = 1129012 Test 001 cpld_control_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/cpld_2threads_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/cpld_2threads_p8 Checking test 002 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -146,14 +146,14 @@ Checking test 002 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK - 0: The total amount of wall time = 428.690674 - 0: The maximum resident set size (KB) = 1707084 + 0: The total amount of wall time = 426.172775 + 0: The maximum resident set size (KB) = 1705952 Test 002 cpld_2threads_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/cpld_decomp_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/cpld_decomp_p8 Checking test 003 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -207,14 +207,14 @@ Checking test 003 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK - 0: The total amount of wall time = 333.419493 - 0: The maximum resident set size (KB) = 1119896 + 0: The total amount of wall time = 335.038507 + 0: The maximum resident set size (KB) = 1121556 Test 003 cpld_decomp_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/cpld_mpi_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/cpld_mpi_p8 Checking test 004 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -268,14 +268,14 @@ Checking test 004 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK - 0: The total amount of wall time = 282.400722 - 0: The maximum resident set size (KB) = 1035296 + 0: The total amount of wall time = 279.835610 + 0: The maximum resident set size (KB) = 1043768 Test 004 cpld_mpi_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_control_p7_rrtmgp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/cpld_control_p7_rrtmgp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/cpld_control_p7_rrtmgp Checking test 005 cpld_control_p7_rrtmgp results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -328,14 +328,14 @@ Checking test 005 cpld_control_p7_rrtmgp results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK - 0: The total amount of wall time = 259.883649 - 0: The maximum resident set size (KB) = 666572 + 0: The total amount of wall time = 260.296494 + 0: The maximum resident set size (KB) = 661760 Test 005 cpld_control_p7_rrtmgp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_bmark_p7 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/cpld_bmark_p7 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/cpld_bmark_p7 Checking test 006 cpld_bmark_p7 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -380,14 +380,14 @@ Checking test 006 cpld_bmark_p7 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - 0: The total amount of wall time = 864.501924 - 0: The maximum resident set size (KB) = 1232184 + 0: The total amount of wall time = 852.063127 + 0: The maximum resident set size (KB) = 1231584 Test 006 cpld_bmark_p7 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_bmark_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/cpld_bmark_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/cpld_bmark_p8 Checking test 007 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -433,14 +433,14 @@ Checking test 007 cpld_bmark_p8 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - 0: The total amount of wall time = 1027.662315 - 0: The maximum resident set size (KB) = 2827228 + 0: The total amount of wall time = 1034.136956 + 0: The maximum resident set size (KB) = 2831244 Test 007 cpld_bmark_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_control_c96_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/cpld_control_c96_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/cpld_control_c96_p8 Checking test 008 cpld_control_c96_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -503,14 +503,14 @@ Checking test 008 cpld_control_c96_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 330.849099 - 0: The maximum resident set size (KB) = 1139224 + 0: The total amount of wall time = 326.700222 + 0: The maximum resident set size (KB) = 1147636 Test 008 cpld_control_c96_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_control_c96_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/cpld_restart_c96_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/cpld_restart_c96_p8 Checking test 009 cpld_restart_c96_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -561,14 +561,14 @@ Checking test 009 cpld_restart_c96_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 184.544335 - 0: The maximum resident set size (KB) = 1103244 + 0: The total amount of wall time = 180.398525 + 0: The maximum resident set size (KB) = 1106744 Test 009 cpld_restart_c96_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_control_c192_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/cpld_control_c192_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/cpld_control_c192_p8 Checking test 010 cpld_control_c192_p8 results .... Comparing sfcf036.tile1.nc .........OK Comparing sfcf036.tile2.nc .........OK @@ -619,14 +619,14 @@ Checking test 010 cpld_control_c192_p8 results .... Comparing RESTART/iced.2021-03-23-64800.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-64800.nc .........OK - 0: The total amount of wall time = 1458.551280 - 0: The maximum resident set size (KB) = 1575372 + 0: The total amount of wall time = 1452.445913 + 0: The maximum resident set size (KB) = 1580280 Test 010 cpld_control_c192_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_control_c192_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/cpld_restart_c192_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/cpld_restart_c192_p8 Checking test 011 cpld_restart_c192_p8 results .... Comparing sfcf036.tile1.nc .........OK Comparing sfcf036.tile2.nc .........OK @@ -677,14 +677,14 @@ Checking test 011 cpld_restart_c192_p8 results .... Comparing RESTART/iced.2021-03-23-64800.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-64800.nc .........OK - 0: The total amount of wall time = 961.328586 - 0: The maximum resident set size (KB) = 1805844 + 0: The total amount of wall time = 958.477699 + 0: The maximum resident set size (KB) = 1802020 Test 011 cpld_restart_c192_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_control_c384_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/cpld_control_c384_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/cpld_control_c384_p8 Checking test 012 cpld_control_c384_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -728,14 +728,14 @@ Checking test 012 cpld_control_c384_p8 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK - 0: The total amount of wall time = 1164.823621 - 0: The maximum resident set size (KB) = 2812292 + 0: The total amount of wall time = 1166.292714 + 0: The maximum resident set size (KB) = 2819568 Test 012 cpld_control_c384_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_control_c384_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/cpld_restart_c384_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/cpld_restart_c384_p8 Checking test 013 cpld_restart_c384_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -779,14 +779,14 @@ Checking test 013 cpld_restart_c384_p8 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK - 0: The total amount of wall time = 663.015900 - 0: The maximum resident set size (KB) = 2784684 + 0: The total amount of wall time = 659.069279 + 0: The maximum resident set size (KB) = 2793572 Test 013 cpld_restart_c384_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/cpld_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/cpld_debug_p8 Checking test 014 cpld_debug_p8 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -837,14 +837,14 @@ Checking test 014 cpld_debug_p8 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK - 0: The total amount of wall time = 1033.403218 - 0: The maximum resident set size (KB) = 1269476 + 0: The total amount of wall time = 1011.717822 + 0: The maximum resident set size (KB) = 1264956 Test 014 cpld_debug_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/control Checking test 015 control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -891,14 +891,14 @@ Checking test 015 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 128.887073 - 0: The maximum resident set size (KB) = 468544 + 0: The total amount of wall time = 128.372119 + 0: The maximum resident set size (KB) = 466096 Test 015 control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/control_decomp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/control_decomp Checking test 016 control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -941,28 +941,28 @@ Checking test 016 control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 134.293172 - 0: The maximum resident set size (KB) = 466648 + 0: The total amount of wall time = 133.553787 + 0: The maximum resident set size (KB) = 464812 Test 016 control_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/control_2dwrtdecomp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/control_2dwrtdecomp Checking test 017 control_2dwrtdecomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 126.009313 - 0: The maximum resident set size (KB) = 468500 + 0: The total amount of wall time = 118.203005 + 0: The maximum resident set size (KB) = 468552 Test 017 control_2dwrtdecomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/control_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/control_2threads Checking test 018 control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1005,14 +1005,14 @@ Checking test 018 control_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 157.751457 - 0: The maximum resident set size (KB) = 517040 + 0: The total amount of wall time = 154.470275 + 0: The maximum resident set size (KB) = 521024 Test 018 control_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/control_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/control_restart Checking test 019 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1051,14 +1051,14 @@ Checking test 019 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 67.746355 - 0: The maximum resident set size (KB) = 211728 + 0: The total amount of wall time = 65.915928 + 0: The maximum resident set size (KB) = 207112 Test 019 control_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/control_fhzero +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/control_fhzero Checking test 020 control_fhzero results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -1101,14 +1101,14 @@ Checking test 020 control_fhzero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 126.456686 - 0: The maximum resident set size (KB) = 464948 + 0: The total amount of wall time = 122.775603 + 0: The maximum resident set size (KB) = 469108 Test 020 control_fhzero PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_CubedSphereGrid -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/control_CubedSphereGrid +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/control_CubedSphereGrid Checking test 021 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1135,14 +1135,14 @@ Checking test 021 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 126.818474 - 0: The maximum resident set size (KB) = 468868 + 0: The total amount of wall time = 121.486627 + 0: The maximum resident set size (KB) = 464364 Test 021 control_CubedSphereGrid PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_latlon -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/control_latlon +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/control_latlon Checking test 022 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1153,14 +1153,14 @@ Checking test 022 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 125.622557 - 0: The maximum resident set size (KB) = 465892 + 0: The total amount of wall time = 128.036090 + 0: The maximum resident set size (KB) = 466472 Test 022 control_latlon PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_wrtGauss_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/control_wrtGauss_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/control_wrtGauss_netcdf_parallel Checking test 023 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc .........OK @@ -1171,14 +1171,14 @@ Checking test 023 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 131.783428 - 0: The maximum resident set size (KB) = 463316 + 0: The total amount of wall time = 129.826257 + 0: The maximum resident set size (KB) = 465108 Test 023 control_wrtGauss_netcdf_parallel PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/control_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/control_c48 Checking test 024 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1217,14 +1217,14 @@ Checking test 024 control_c48 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0: The total amount of wall time = 325.436761 -0: The maximum resident set size (KB) = 656884 +0: The total amount of wall time = 327.004750 +0: The maximum resident set size (KB) = 657972 Test 024 control_c48 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_c192 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/control_c192 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/control_c192 Checking test 025 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1235,14 +1235,14 @@ Checking test 025 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 473.856156 - 0: The maximum resident set size (KB) = 560080 + 0: The total amount of wall time = 476.564408 + 0: The maximum resident set size (KB) = 563508 Test 025 control_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_c384 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/control_c384 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/control_c384 Checking test 026 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1253,14 +1253,14 @@ Checking test 026 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 787.242058 - 0: The maximum resident set size (KB) = 816916 + 0: The total amount of wall time = 789.133848 + 0: The maximum resident set size (KB) = 815852 Test 026 control_c384 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_c384gdas -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/control_c384gdas +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/control_c384gdas Checking test 027 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1303,14 +1303,14 @@ Checking test 027 control_c384gdas results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 695.396940 - 0: The maximum resident set size (KB) = 970956 + 0: The total amount of wall time = 692.647436 + 0: The maximum resident set size (KB) = 967456 Test 027 control_c384gdas PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/control_stochy Checking test 028 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1321,28 +1321,28 @@ Checking test 028 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 83.028367 - 0: The maximum resident set size (KB) = 469660 + 0: The total amount of wall time = 84.936169 + 0: The maximum resident set size (KB) = 467348 Test 028 control_stochy PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/control_stochy_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/control_stochy_restart Checking test 029 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 45.853042 - 0: The maximum resident set size (KB) = 250008 + 0: The total amount of wall time = 44.379891 + 0: The maximum resident set size (KB) = 249900 Test 029 control_stochy_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_lndp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/control_lndp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/control_lndp Checking test 030 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1353,14 +1353,14 @@ Checking test 030 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 77.468309 - 0: The maximum resident set size (KB) = 470348 + 0: The total amount of wall time = 75.430361 + 0: The maximum resident set size (KB) = 470548 Test 030 control_lndp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_iovr4 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/control_iovr4 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/control_iovr4 Checking test 031 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1375,14 +1375,14 @@ Checking test 031 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 132.318792 - 0: The maximum resident set size (KB) = 465128 + 0: The total amount of wall time = 126.698524 + 0: The maximum resident set size (KB) = 467188 Test 031 control_iovr4 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_iovr5 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/control_iovr5 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/control_iovr5 Checking test 032 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1397,14 +1397,14 @@ Checking test 032 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 132.321224 - 0: The maximum resident set size (KB) = 463956 + 0: The total amount of wall time = 131.266183 + 0: The maximum resident set size (KB) = 469004 Test 032 control_iovr5 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/control_p8 Checking test 033 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1451,14 +1451,14 @@ Checking test 033 control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 154.477261 - 0: The maximum resident set size (KB) = 853292 + 0: The total amount of wall time = 149.775752 + 0: The maximum resident set size (KB) = 852052 Test 033 control_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/control_restart_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/control_restart_p8 Checking test 034 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1497,14 +1497,14 @@ Checking test 034 control_restart_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 79.897948 - 0: The maximum resident set size (KB) = 598956 + 0: The total amount of wall time = 82.157605 + 0: The maximum resident set size (KB) = 601112 Test 034 control_restart_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/control_decomp_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/control_decomp_p8 Checking test 035 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1547,14 +1547,14 @@ Checking test 035 control_decomp_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 155.389516 - 0: The maximum resident set size (KB) = 847272 + 0: The total amount of wall time = 152.450654 + 0: The maximum resident set size (KB) = 847308 Test 035 control_decomp_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/control_2threads_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/control_2threads_p8 Checking test 036 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1597,14 +1597,14 @@ Checking test 036 control_2threads_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 188.460761 - 0: The maximum resident set size (KB) = 924380 + 0: The total amount of wall time = 185.835495 + 0: The maximum resident set size (KB) = 928712 Test 036 control_2threads_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_p7_rrtmgp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/control_p7_rrtmgp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/control_p7_rrtmgp Checking test 037 control_p7_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1651,14 +1651,14 @@ Checking test 037 control_p7_rrtmgp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 190.043206 - 0: The maximum resident set size (KB) = 595444 + 0: The total amount of wall time = 184.539466 + 0: The maximum resident set size (KB) = 602296 Test 037 control_p7_rrtmgp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/fv3_regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/regional_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/regional_control Checking test 038 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1669,42 +1669,42 @@ Checking test 038 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 312.636525 - 0: The maximum resident set size (KB) = 583408 + 0: The total amount of wall time = 310.292645 + 0: The maximum resident set size (KB) = 580904 Test 038 regional_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/fv3_regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/regional_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/regional_restart Checking test 039 regional_restart results .... Comparing dynf024.nc .........OK Comparing phyf024.nc .........OK Comparing PRSLEV.GrbF24 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 169.951251 - 0: The maximum resident set size (KB) = 582728 + 0: The total amount of wall time = 172.333081 + 0: The maximum resident set size (KB) = 581552 Test 039 regional_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/fv3_regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/regional_control_2dwrtdecomp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/regional_control_2dwrtdecomp Checking test 040 regional_control_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK - 0: The total amount of wall time = 311.907482 - 0: The maximum resident set size (KB) = 577048 + 0: The total amount of wall time = 308.921959 + 0: The maximum resident set size (KB) = 580260 Test 040 regional_control_2dwrtdecomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/fv3_regional_noquilt -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/regional_noquilt +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/regional_noquilt Checking test 041 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1712,14 +1712,14 @@ Checking test 041 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 = 322.549268 - 0: The maximum resident set size (KB) = 595264 + 0: The total amount of wall time = 324.236067 + 0: The maximum resident set size (KB) = 595212 Test 041 regional_noquilt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/fv3_regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/regional_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/regional_2threads Checking test 042 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1730,14 +1730,14 @@ Checking test 042 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 238.977659 - 0: The maximum resident set size (KB) = 580952 + 0: The total amount of wall time = 239.018049 + 0: The maximum resident set size (KB) = 578352 Test 042 regional_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/fv3_regional_hafs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/regional_hafs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/regional_hafs Checking test 043 regional_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1746,28 +1746,28 @@ Checking test 043 regional_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK - 0: The total amount of wall time = 312.440586 - 0: The maximum resident set size (KB) = 579848 + 0: The total amount of wall time = 306.746668 + 0: The maximum resident set size (KB) = 581724 Test 043 regional_hafs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/fv3_regional_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/regional_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/regional_netcdf_parallel Checking test 044 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf024.nc ............ALT CHECK......OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK - 0: The total amount of wall time = 306.396932 - 0: The maximum resident set size (KB) = 580604 + 0: The total amount of wall time = 309.479782 + 0: The maximum resident set size (KB) = 580092 Test 044 regional_netcdf_parallel PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/fv3_regional_RRTMGP -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/regional_RRTMGP +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/regional_RRTMGP Checking test 045 regional_RRTMGP results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1778,14 +1778,14 @@ Checking test 045 regional_RRTMGP results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 411.069399 - 0: The maximum resident set size (KB) = 704952 + 0: The total amount of wall time = 413.300298 + 0: The maximum resident set size (KB) = 699772 Test 045 regional_RRTMGP PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/fv3_regional_3km -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/regional_3km +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/regional_3km Checking test 046 regional_3km results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1796,14 +1796,14 @@ Checking test 046 regional_3km results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 253.270198 - 0: The maximum resident set size (KB) = 619176 + 0: The total amount of wall time = 244.119209 + 0: The maximum resident set size (KB) = 619416 Test 046 regional_3km PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/rap_control Checking test 047 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1850,14 +1850,14 @@ Checking test 047 rap_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 358.619866 - 0: The maximum resident set size (KB) = 836124 + 0: The total amount of wall time = 358.381771 + 0: The maximum resident set size (KB) = 836620 Test 047 rap_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/regional_spp_sppt_shum_skeb -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/regional_spp_sppt_shum_skeb +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/regional_spp_sppt_shum_skeb Checking test 048 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -1868,14 +1868,14 @@ Checking test 048 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 301.412098 - 0: The maximum resident set size (KB) = 930800 + 0: The total amount of wall time = 303.829600 + 0: The maximum resident set size (KB) = 926912 Test 048 regional_spp_sppt_shum_skeb PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/rap_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/rap_2threads Checking test 049 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1922,14 +1922,14 @@ Checking test 049 rap_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 452.111001 - 0: The maximum resident set size (KB) = 898568 + 0: The total amount of wall time = 450.397502 + 0: The maximum resident set size (KB) = 900820 Test 049 rap_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/rap_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/rap_restart Checking test 050 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1968,14 +1968,14 @@ Checking test 050 rap_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 180.291630 - 0: The maximum resident set size (KB) = 593536 + 0: The total amount of wall time = 181.066832 + 0: The maximum resident set size (KB) = 590988 Test 050 rap_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/rap_sfcdiff Checking test 051 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2022,14 +2022,14 @@ Checking test 051 rap_sfcdiff results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 360.803008 - 0: The maximum resident set size (KB) = 835720 + 0: The total amount of wall time = 365.873477 + 0: The maximum resident set size (KB) = 834572 Test 051 rap_sfcdiff PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/rap_sfcdiff_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/rap_sfcdiff_restart Checking test 052 rap_sfcdiff_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2068,14 +2068,14 @@ Checking test 052 rap_sfcdiff_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 182.478158 - 0: The maximum resident set size (KB) = 591804 + 0: The total amount of wall time = 181.116252 + 0: The maximum resident set size (KB) = 592716 Test 052 rap_sfcdiff_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/hrrr_control Checking test 053 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2122,14 +2122,14 @@ Checking test 053 hrrr_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 345.749226 - 0: The maximum resident set size (KB) = 835072 + 0: The total amount of wall time = 347.551051 + 0: The maximum resident set size (KB) = 837728 Test 053 hrrr_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/rrfs_v1beta Checking test 054 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2176,14 +2176,14 @@ Checking test 054 rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 353.924412 - 0: The maximum resident set size (KB) = 833364 + 0: The total amount of wall time = 353.910907 + 0: The maximum resident set size (KB) = 833320 Test 054 rrfs_v1beta PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rrfs_v1nssl -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/rrfs_v1nssl +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/rrfs_v1nssl Checking test 055 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2198,14 +2198,14 @@ Checking test 055 rrfs_v1nssl results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 441.178695 - 0: The maximum resident set size (KB) = 523452 + 0: The total amount of wall time = 430.427959 + 0: The maximum resident set size (KB) = 526488 Test 055 rrfs_v1nssl PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/rrfs_v1nssl_nohailnoccn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/rrfs_v1nssl_nohailnoccn Checking test 056 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2220,14 +2220,14 @@ Checking test 056 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 431.990167 - 0: The maximum resident set size (KB) = 513856 + 0: The total amount of wall time = 425.675817 + 0: The maximum resident set size (KB) = 518220 Test 056 rrfs_v1nssl_nohailnoccn PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rrfs_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/rrfs_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/rrfs_conus13km_hrrr_warm Checking test 057 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2236,14 +2236,14 @@ Checking test 057 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 160.609748 - 0: The maximum resident set size (KB) = 672144 + 0: The total amount of wall time = 167.708509 + 0: The maximum resident set size (KB) = 668996 Test 057 rrfs_conus13km_hrrr_warm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/rrfs_conus13km_radar_tten_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/rrfs_conus13km_radar_tten_warm Checking test 058 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2252,14 +2252,14 @@ Checking test 058 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 170.242398 - 0: The maximum resident set size (KB) = 669032 + 0: The total amount of wall time = 166.219417 + 0: The maximum resident set size (KB) = 667244 Test 058 rrfs_conus13km_radar_tten_warm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_rrtmgp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/control_rrtmgp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/control_rrtmgp Checking test 059 control_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2270,14 +2270,14 @@ Checking test 059 control_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 202.854072 - 0: The maximum resident set size (KB) = 595516 + 0: The total amount of wall time = 203.180739 + 0: The maximum resident set size (KB) = 596240 Test 059 control_rrtmgp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_rrtmgp_c192 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/control_rrtmgp_c192 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/control_rrtmgp_c192 Checking test 060 control_rrtmgp_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2288,14 +2288,14 @@ Checking test 060 control_rrtmgp_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 537.124111 - 0: The maximum resident set size (KB) = 796540 + 0: The total amount of wall time = 531.797135 + 0: The maximum resident set size (KB) = 797516 Test 060 control_rrtmgp_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_csawmg -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/control_csawmg +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/control_csawmg Checking test 061 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2306,14 +2306,14 @@ Checking test 061 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 325.111884 - 0: The maximum resident set size (KB) = 537240 + 0: The total amount of wall time = 316.620002 + 0: The maximum resident set size (KB) = 537400 Test 061 control_csawmg PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_csawmgt -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/control_csawmgt +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/control_csawmgt Checking test 062 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2324,14 +2324,14 @@ Checking test 062 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 312.233490 - 0: The maximum resident set size (KB) = 538384 + 0: The total amount of wall time = 314.867609 + 0: The maximum resident set size (KB) = 535408 Test 062 control_csawmgt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_flake -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/control_flake +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/control_flake Checking test 063 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2342,14 +2342,14 @@ Checking test 063 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 231.339158 - 0: The maximum resident set size (KB) = 540032 + 0: The total amount of wall time = 230.408854 + 0: The maximum resident set size (KB) = 538156 Test 063 control_flake PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_ras -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/control_ras +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/control_ras Checking test 064 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2360,14 +2360,14 @@ Checking test 064 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 173.001317 - 0: The maximum resident set size (KB) = 501248 + 0: The total amount of wall time = 168.975182 + 0: The maximum resident set size (KB) = 502752 Test 064 control_ras PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/control_thompson +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/control_thompson Checking test 065 control_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2378,14 +2378,14 @@ Checking test 065 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 219.989405 - 0: The maximum resident set size (KB) = 850744 + 0: The total amount of wall time = 218.803042 + 0: The maximum resident set size (KB) = 855720 Test 065 control_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_thompson_no_aero -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/control_thompson_no_aero +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/control_thompson_no_aero Checking test 066 control_thompson_no_aero results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2396,54 +2396,54 @@ Checking test 066 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 203.625627 - 0: The maximum resident set size (KB) = 846724 + 0: The total amount of wall time = 202.166496 + 0: The maximum resident set size (KB) = 842944 Test 066 control_thompson_no_aero PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_wam_repro -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/control_wam_repro +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/control_wam_repro Checking test 067 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 122.096264 - 0: The maximum resident set size (KB) = 231124 + 0: The total amount of wall time = 116.331998 + 0: The maximum resident set size (KB) = 233944 Test 067 control_wam PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/control_debug Checking test 068 control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 144.637439 - 0: The maximum resident set size (KB) = 627180 + 0: The total amount of wall time = 143.274885 + 0: The maximum resident set size (KB) = 631636 Test 068 control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/control_2threads_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/control_2threads_debug Checking test 069 control_2threads_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 209.513688 - 0: The maximum resident set size (KB) = 680576 + 0: The total amount of wall time = 213.232159 + 0: The maximum resident set size (KB) = 683684 Test 069 control_2threads_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_CubedSphereGrid_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/control_CubedSphereGrid_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/control_CubedSphereGrid_debug Checking test 070 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2470,428 +2470,428 @@ Checking test 070 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 161.568826 - 0: The maximum resident set size (KB) = 628360 + 0: The total amount of wall time = 155.814093 + 0: The maximum resident set size (KB) = 633232 Test 070 control_CubedSphereGrid_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/control_wrtGauss_netcdf_parallel_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/control_wrtGauss_netcdf_parallel_debug Checking test 071 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 145.060160 - 0: The maximum resident set size (KB) = 632292 + 0: The total amount of wall time = 144.230345 + 0: The maximum resident set size (KB) = 635424 Test 071 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_stochy_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/control_stochy_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/control_stochy_debug Checking test 072 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.113890 - 0: The maximum resident set size (KB) = 632780 + 0: The total amount of wall time = 162.687996 + 0: The maximum resident set size (KB) = 639276 Test 072 control_stochy_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_lndp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/control_lndp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/control_lndp_debug Checking test 073 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 = 148.868864 - 0: The maximum resident set size (KB) = 640544 + 0: The total amount of wall time = 148.211896 + 0: The maximum resident set size (KB) = 637068 Test 073 control_lndp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_rrtmgp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/control_rrtmgp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/control_rrtmgp_debug Checking test 074 control_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 160.834432 - 0: The maximum resident set size (KB) = 732316 + 0: The total amount of wall time = 158.918639 + 0: The maximum resident set size (KB) = 734224 Test 074 control_rrtmgp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_csawmg_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/control_csawmg_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/control_csawmg_debug Checking test 075 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 = 228.890105 - 0: The maximum resident set size (KB) = 678896 + 0: The total amount of wall time = 225.374152 + 0: The maximum resident set size (KB) = 673780 Test 075 control_csawmg_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_csawmgt_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/control_csawmgt_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/control_csawmgt_debug Checking test 076 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 = 219.862627 - 0: The maximum resident set size (KB) = 676820 + 0: The total amount of wall time = 220.559349 + 0: The maximum resident set size (KB) = 678188 Test 076 control_csawmgt_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/control_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/control_ras_debug Checking test 077 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 = 150.702734 - 0: The maximum resident set size (KB) = 643608 + 0: The total amount of wall time = 150.302190 + 0: The maximum resident set size (KB) = 643680 Test 077 control_ras_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/control_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/control_diag_debug Checking test 078 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 = 157.941539 - 0: The maximum resident set size (KB) = 688356 + 0: The total amount of wall time = 151.834102 + 0: The maximum resident set size (KB) = 686504 Test 078 control_diag_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/control_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/control_debug_p8 Checking test 079 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 = 155.627708 - 0: The maximum resident set size (KB) = 1017580 + 0: The total amount of wall time = 155.237298 + 0: The maximum resident set size (KB) = 1020572 Test 079 control_debug_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/control_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/control_thompson_debug Checking test 080 control_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 167.843985 - 0: The maximum resident set size (KB) = 999680 + 0: The total amount of wall time = 166.517123 + 0: The maximum resident set size (KB) = 994896 Test 080 control_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_thompson_no_aero_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/control_thompson_no_aero_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/control_thompson_no_aero_debug Checking test 081 control_thompson_no_aero_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 163.017914 - 0: The maximum resident set size (KB) = 990760 + 0: The total amount of wall time = 160.647959 + 0: The maximum resident set size (KB) = 990716 Test 081 control_thompson_no_aero_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_thompson_debug_extdiag -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/control_thompson_extdiag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/control_thompson_extdiag_debug Checking test 082 control_thompson_extdiag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 178.636308 - 0: The maximum resident set size (KB) = 1018876 + 0: The total amount of wall time = 179.038526 + 0: The maximum resident set size (KB) = 1024824 Test 082 control_thompson_extdiag_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_thompson_progcld_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/control_thompson_progcld_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/control_thompson_progcld_thompson_debug Checking test 083 control_thompson_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 169.646042 - 0: The maximum resident set size (KB) = 991236 + 0: The total amount of wall time = 166.356744 + 0: The maximum resident set size (KB) = 996984 Test 083 control_thompson_progcld_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/fv3_regional_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/regional_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/regional_debug Checking test 084 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 = 240.486146 - 0: The maximum resident set size (KB) = 608832 + 0: The total amount of wall time = 234.198255 + 0: The maximum resident set size (KB) = 609532 Test 084 regional_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/rap_control_debug Checking test 085 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 264.332953 - 0: The maximum resident set size (KB) = 997392 + 0: The total amount of wall time = 256.796934 + 0: The maximum resident set size (KB) = 998176 Test 085 rap_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/rap_unified_drag_suite_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/rap_unified_drag_suite_debug Checking test 086 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 = 263.361503 - 0: The maximum resident set size (KB) = 999916 + 0: The total amount of wall time = 263.231932 + 0: The maximum resident set size (KB) = 998176 Test 086 rap_unified_drag_suite_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/rap_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/rap_diag_debug Checking test 087 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 = 280.534390 - 0: The maximum resident set size (KB) = 1083060 + 0: The total amount of wall time = 273.388043 + 0: The maximum resident set size (KB) = 1083660 Test 087 rap_diag_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/rap_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/rap_cires_ugwp_debug Checking test 088 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 = 267.518507 - 0: The maximum resident set size (KB) = 1002752 + 0: The total amount of wall time = 267.475006 + 0: The maximum resident set size (KB) = 1001248 Test 088 rap_cires_ugwp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/rap_unified_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/rap_unified_ugwp_debug Checking test 089 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 = 268.790002 - 0: The maximum resident set size (KB) = 1000860 + 0: The total amount of wall time = 261.485886 + 0: The maximum resident set size (KB) = 999780 Test 089 rap_unified_ugwp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_lndp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/rap_lndp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/rap_lndp_debug Checking test 090 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 = 262.397923 - 0: The maximum resident set size (KB) = 1001136 + 0: The total amount of wall time = 260.347459 + 0: The maximum resident set size (KB) = 998492 Test 090 rap_lndp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_flake_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/rap_flake_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/rap_flake_debug Checking test 091 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 = 264.947043 - 0: The maximum resident set size (KB) = 998916 + 0: The total amount of wall time = 257.478732 + 0: The maximum resident set size (KB) = 1003868 Test 091 rap_flake_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_progcld_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/rap_progcld_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/rap_progcld_thompson_debug Checking test 092 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 = 264.824358 - 0: The maximum resident set size (KB) = 994440 + 0: The total amount of wall time = 257.470189 + 0: The maximum resident set size (KB) = 998508 Test 092 rap_progcld_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_noah_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/rap_noah_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/rap_noah_debug Checking test 093 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 = 261.955452 - 0: The maximum resident set size (KB) = 999480 + 0: The total amount of wall time = 256.951144 + 0: The maximum resident set size (KB) = 1001236 Test 093 rap_noah_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_rrtmgp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/rap_rrtmgp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/rap_rrtmgp_debug Checking test 094 rap_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 437.973108 - 0: The maximum resident set size (KB) = 1108452 + 0: The total amount of wall time = 442.451325 + 0: The maximum resident set size (KB) = 1112196 Test 094 rap_rrtmgp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_sfcdiff_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/rap_sfcdiff_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/rap_sfcdiff_debug Checking test 095 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 = 260.633915 - 0: The maximum resident set size (KB) = 1000084 + 0: The total amount of wall time = 256.717936 + 0: The maximum resident set size (KB) = 998884 Test 095 rap_sfcdiff_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/rap_noah_sfcdiff_cires_ugwp_debug Checking test 096 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 = 432.945212 - 0: The maximum resident set size (KB) = 1003040 + 0: The total amount of wall time = 430.556309 + 0: The maximum resident set size (KB) = 1003512 Test 096 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/rrfs_v1beta_debug Checking test 097 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 = 265.775559 - 0: The maximum resident set size (KB) = 1001548 + 0: The total amount of wall time = 258.435132 + 0: The maximum resident set size (KB) = 999336 Test 097 rrfs_v1beta_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_wam_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/control_wam_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/control_wam_debug Checking test 098 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 274.296641 - 0: The maximum resident set size (KB) = 253808 + 0: The total amount of wall time = 275.037193 + 0: The maximum resident set size (KB) = 254916 Test 098 control_wam_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/hafs_regional_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/hafs_regional_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/hafs_regional_atm Checking test 099 hafs_regional_atm results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 284.132896 - 0: The maximum resident set size (KB) = 702952 + 0: The total amount of wall time = 283.698861 + 0: The maximum resident set size (KB) = 714276 Test 099 hafs_regional_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/hafs_regional_atm_thompson_gfdlsf +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/hafs_regional_atm_thompson_gfdlsf Checking test 100 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 333.572119 - 0: The maximum resident set size (KB) = 1064340 + 0: The total amount of wall time = 338.245785 + 0: The maximum resident set size (KB) = 1067988 Test 100 hafs_regional_atm_thompson_gfdlsf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/hafs_regional_atm_ocn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/hafs_regional_atm_ocn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/hafs_regional_atm_ocn Checking test 101 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -2900,28 +2900,28 @@ Checking test 101 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 = 362.764584 - 0: The maximum resident set size (KB) = 724124 + 0: The total amount of wall time = 363.904236 + 0: The maximum resident set size (KB) = 723864 Test 101 hafs_regional_atm_ocn PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/hafs_regional_atm_wav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/hafs_regional_atm_wav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/hafs_regional_atm_wav Checking test 102 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 810.250841 - 0: The maximum resident set size (KB) = 719508 + 0: The total amount of wall time = 817.707323 + 0: The maximum resident set size (KB) = 724328 Test 102 hafs_regional_atm_wav PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/hafs_regional_atm_ocn_wav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/hafs_regional_atm_ocn_wav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/hafs_regional_atm_ocn_wav Checking test 103 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -2930,28 +2930,28 @@ Checking test 103 hafs_regional_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 890.786994 - 0: The maximum resident set size (KB) = 724744 + 0: The total amount of wall time = 892.639842 + 0: The maximum resident set size (KB) = 725184 Test 103 hafs_regional_atm_ocn_wav PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/hafs_regional_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/hafs_regional_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/hafs_regional_1nest_atm Checking test 104 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 = 427.509800 - 0: The maximum resident set size (KB) = 316708 + 0: The total amount of wall time = 425.688474 + 0: The maximum resident set size (KB) = 319744 Test 104 hafs_regional_1nest_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/hafs_regional_telescopic_2nests_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/hafs_regional_telescopic_2nests_atm Checking test 105 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -2960,28 +2960,28 @@ Checking test 105 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 = 441.674027 - 0: The maximum resident set size (KB) = 332100 + 0: The total amount of wall time = 439.757413 + 0: The maximum resident set size (KB) = 327760 Test 105 hafs_regional_telescopic_2nests_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/hafs_global_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/hafs_global_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/hafs_global_1nest_atm Checking test 106 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 = 196.654237 - 0: The maximum resident set size (KB) = 205000 + 0: The total amount of wall time = 200.366210 + 0: The maximum resident set size (KB) = 205736 Test 106 hafs_global_1nest_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/hafs_global_multiple_4nests_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/hafs_global_multiple_4nests_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/hafs_global_multiple_4nests_atm Checking test 107 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc .........OK @@ -2994,14 +2994,14 @@ Checking test 107 hafs_global_multiple_4nests_atm results .... Comparing atm.nest05.f006.nc .........OK Comparing sfc.nest05.f006.nc ............ALT CHECK......OK - 0: The total amount of wall time = 540.101972 - 0: The maximum resident set size (KB) = 276756 + 0: The total amount of wall time = 538.791673 + 0: The maximum resident set size (KB) = 275816 Test 107 hafs_global_multiple_4nests_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/hafs_regional_docn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/hafs_regional_docn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/hafs_regional_docn Checking test 108 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3009,14 +3009,14 @@ Checking test 108 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 = 353.147065 - 0: The maximum resident set size (KB) = 722740 + 0: The total amount of wall time = 353.762547 + 0: The maximum resident set size (KB) = 723064 Test 108 hafs_regional_docn PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/hafs_regional_docn_oisst -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/hafs_regional_docn_oisst +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/hafs_regional_docn_oisst Checking test 109 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3024,118 +3024,118 @@ Checking test 109 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 = 353.505970 - 0: The maximum resident set size (KB) = 722188 + 0: The total amount of wall time = 347.724512 + 0: The maximum resident set size (KB) = 723024 Test 109 hafs_regional_docn_oisst PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/hafs_regional_datm_cdeps -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/hafs_regional_datm_cdeps +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/hafs_regional_datm_cdeps Checking test 110 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 940.125163 - 0: The maximum resident set size (KB) = 854464 + 0: The total amount of wall time = 948.455679 + 0: The maximum resident set size (KB) = 853164 Test 110 hafs_regional_datm_cdeps PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/datm_cdeps_control_cfsr Checking test 111 datm_cdeps_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 141.444771 - 0: The maximum resident set size (KB) = 716904 + 0: The total amount of wall time = 140.271738 + 0: The maximum resident set size (KB) = 717436 Test 111 datm_cdeps_control_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/datm_cdeps_restart_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/datm_cdeps_restart_cfsr Checking test 112 datm_cdeps_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 86.094612 - 0: The maximum resident set size (KB) = 719312 + 0: The total amount of wall time = 84.120973 + 0: The maximum resident set size (KB) = 717852 Test 112 datm_cdeps_restart_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/datm_cdeps_control_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/datm_cdeps_control_gefs Checking test 113 datm_cdeps_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 138.571113 - 0: The maximum resident set size (KB) = 618180 + 0: The total amount of wall time = 137.994428 + 0: The maximum resident set size (KB) = 619300 Test 113 datm_cdeps_control_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_iau_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/datm_cdeps_iau_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/datm_cdeps_iau_gefs Checking test 114 datm_cdeps_iau_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 138.332368 - 0: The maximum resident set size (KB) = 618836 + 0: The total amount of wall time = 139.799807 + 0: The maximum resident set size (KB) = 617928 Test 114 datm_cdeps_iau_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_stochy_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/datm_cdeps_stochy_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/datm_cdeps_stochy_gefs Checking test 115 datm_cdeps_stochy_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 138.138301 - 0: The maximum resident set size (KB) = 619208 + 0: The total amount of wall time = 140.749022 + 0: The maximum resident set size (KB) = 618972 Test 115 datm_cdeps_stochy_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_bulk_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/datm_cdeps_bulk_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/datm_cdeps_bulk_cfsr Checking test 116 datm_cdeps_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 140.160962 - 0: The maximum resident set size (KB) = 717244 + 0: The total amount of wall time = 140.709735 + 0: The maximum resident set size (KB) = 718780 Test 116 datm_cdeps_bulk_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_bulk_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/datm_cdeps_bulk_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/datm_cdeps_bulk_gefs Checking test 117 datm_cdeps_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 135.485803 - 0: The maximum resident set size (KB) = 618524 + 0: The total amount of wall time = 138.020230 + 0: The maximum resident set size (KB) = 619680 Test 117 datm_cdeps_bulk_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/datm_cdeps_mx025_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/datm_cdeps_mx025_cfsr Checking test 118 datm_cdeps_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -3144,14 +3144,14 @@ Checking test 118 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 306.179457 - 0: The maximum resident set size (KB) = 561524 + 0: The total amount of wall time = 302.544316 + 0: The maximum resident set size (KB) = 565664 Test 118 datm_cdeps_mx025_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/datm_cdeps_mx025_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/datm_cdeps_mx025_gefs Checking test 119 datm_cdeps_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -3160,64 +3160,64 @@ Checking test 119 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 298.581437 - 0: The maximum resident set size (KB) = 532000 + 0: The total amount of wall time = 298.944627 + 0: The maximum resident set size (KB) = 528232 Test 119 datm_cdeps_mx025_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/datm_cdeps_multiple_files_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/datm_cdeps_multiple_files_cfsr Checking test 120 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 = 142.417317 - 0: The maximum resident set size (KB) = 717384 + 0: The total amount of wall time = 141.129115 + 0: The maximum resident set size (KB) = 717668 Test 120 datm_cdeps_multiple_files_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/datm_cdeps_3072x1536_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/datm_cdeps_3072x1536_cfsr Checking test 121 datm_cdeps_3072x1536_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 187.748682 - 0: The maximum resident set size (KB) = 1833500 + 0: The total amount of wall time = 192.884427 + 0: The maximum resident set size (KB) = 1895324 Test 121 datm_cdeps_3072x1536_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_gfs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/datm_cdeps_gfs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/datm_cdeps_gfs Checking test 122 datm_cdeps_gfs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 191.966775 - 0: The maximum resident set size (KB) = 1894816 + 0: The total amount of wall time = 194.957354 + 0: The maximum resident set size (KB) = 1830900 Test 122 datm_cdeps_gfs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_debug_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/datm_cdeps_debug_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/datm_cdeps_debug_cfsr Checking test 123 datm_cdeps_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 433.137205 - 0: The maximum resident set size (KB) = 725020 + 0: The total amount of wall time = 441.512949 + 0: The maximum resident set size (KB) = 723064 Test 123 datm_cdeps_debug_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_atmwav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/control_atmwav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/control_atmwav Checking test 124 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -3261,14 +3261,14 @@ Checking test 124 control_atmwav results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 81.466308 - 0: The maximum resident set size (KB) = 495308 + 0: The total amount of wall time = 82.692512 + 0: The maximum resident set size (KB) = 497704 Test 124 control_atmwav PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_c384gdas_wav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/control_c384gdas_wav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/control_c384gdas_wav Checking test 125 control_c384gdas_wav results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -3314,14 +3314,14 @@ Checking test 125 control_c384gdas_wav results .... Comparing 20210322.030000.restart.gnh_10m .........OK Comparing 20210322.030000.restart.gsh_15m .........OK - 0: The total amount of wall time = 677.708274 - 0: The maximum resident set size (KB) = 1049052 + 0: The total amount of wall time = 675.548329 + 0: The maximum resident set size (KB) = 1045084 Test 125 control_c384gdas_wav PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_atm_aerosols -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29240/control_atm_aerosols +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20981/control_atm_aerosols Checking test 126 control_atm_aerosols results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3368,12 +3368,12 @@ Checking test 126 control_atm_aerosols results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 284.001321 - 0: The maximum resident set size (KB) = 908620 + 0: The total amount of wall time = 280.505559 + 0: The maximum resident set size (KB) = 909764 Test 126 control_atm_aerosols PASS REGRESSION TEST WAS SUCCESSFUL -Fri Apr 1 18:42:29 UTC 2022 -Elapsed time: 01h:18m:41s. Have a nice day! +Mon Apr 4 16:43:47 UTC 2022 +Elapsed time: 01h:11m:02s. Have a nice day! diff --git a/tests/RegressionTests_jet.intel.log b/tests/RegressionTests_jet.intel.log index 502fa0f7cb..417f7c8c3a 100644 --- a/tests/RegressionTests_jet.intel.log +++ b/tests/RegressionTests_jet.intel.log @@ -1,24 +1,24 @@ -Fri Apr 1 19:31:32 GMT 2022 +Mon Apr 4 15:31:56 GMT 2022 Start Regression test -Compile 001 elapsed time 1425 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1,FV3_GFS_v16_coupled_p7_rrtmgp,FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 002 elapsed time 265 seconds. -DAPP=S2SA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 003 elapsed time 1251 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP,FV3_GFS_v16_p7_rrtmgp,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 004 elapsed time 1273 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 005 elapsed time 1315 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 006 elapsed time 725 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DREPRO=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -Compile 007 elapsed time 252 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp,FV3_GFS_v16_thompson,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 230 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP,FV3_RAP_cires_ugwp,FV3_RAP_unified_ugwp,FV3_RAP_flake -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 228 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP_noah,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 010 elapsed time 217 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 011 elapsed time 1259 seconds. -DAPP=HAFSW -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 012 elapsed time 1258 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 013 elapsed time 280 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 014 elapsed time 127 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 015 elapsed time 1193 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 001 elapsed time 1430 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1,FV3_GFS_v16_coupled_p7_rrtmgp,FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 002 elapsed time 258 seconds. -DAPP=S2SA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 003 elapsed time 1254 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP,FV3_GFS_v16_p7_rrtmgp,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 004 elapsed time 1263 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 005 elapsed time 1321 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 006 elapsed time 705 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DREPRO=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit +Compile 007 elapsed time 255 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp,FV3_GFS_v16_thompson,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 229 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP,FV3_RAP_cires_ugwp,FV3_RAP_unified_ugwp,FV3_RAP_flake -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 230 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP_noah,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 010 elapsed time 221 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 011 elapsed time 1272 seconds. -DAPP=HAFSW -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 012 elapsed time 1277 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 013 elapsed time 284 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 014 elapsed time 130 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 015 elapsed time 1208 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_271775/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/cpld_control_p8 Checking test 001 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -84,14 +84,14 @@ Checking test 001 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK - 0: The total amount of wall time = 464.196713 - 0: The maximum resident set size (KB) = 1155440 + 0: The total amount of wall time = 466.249234 + 0: The maximum resident set size (KB) = 1156484 Test 001 cpld_control_p8 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_271775/cpld_2threads_p8 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/cpld_2threads_p8 Checking test 002 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -145,14 +145,14 @@ Checking test 002 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK - 0: The total amount of wall time = 1389.732959 - 0: The maximum resident set size (KB) = 1742612 + 0: The total amount of wall time = 1505.005406 + 0: The maximum resident set size (KB) = 1754680 Test 002 cpld_2threads_p8 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_271775/cpld_mpi_p8 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/cpld_mpi_p8 Checking test 003 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -206,14 +206,14 @@ Checking test 003 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK - 0: The total amount of wall time = 397.847950 - 0: The maximum resident set size (KB) = 1278228 + 0: The total amount of wall time = 398.202681 + 0: The maximum resident set size (KB) = 1280636 Test 003 cpld_mpi_p8 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_control_p7_rrtmgp -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_271775/cpld_control_p7_rrtmgp +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/cpld_control_p7_rrtmgp Checking test 004 cpld_control_p7_rrtmgp results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -266,14 +266,14 @@ Checking test 004 cpld_control_p7_rrtmgp results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK - 0: The total amount of wall time = 368.605392 - 0: The maximum resident set size (KB) = 664964 + 0: The total amount of wall time = 371.681597 + 0: The maximum resident set size (KB) = 663496 Test 004 cpld_control_p7_rrtmgp PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_bmark_p7 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_271775/cpld_bmark_p7 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/cpld_bmark_p7 Checking test 005 cpld_bmark_p7 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -318,14 +318,14 @@ Checking test 005 cpld_bmark_p7 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - 0: The total amount of wall time = 1197.176285 - 0: The maximum resident set size (KB) = 1221944 + 0: The total amount of wall time = 1191.386373 + 0: The maximum resident set size (KB) = 1225036 Test 005 cpld_bmark_p7 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_control_c96_p8 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_271775/cpld_control_c96_p8 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/cpld_control_c96_p8 Checking test 006 cpld_control_c96_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -388,14 +388,14 @@ Checking test 006 cpld_control_c96_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 462.098963 - 0: The maximum resident set size (KB) = 1367296 + 0: The total amount of wall time = 538.425894 + 0: The maximum resident set size (KB) = 1363172 Test 006 cpld_control_c96_p8 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_control_c96_p8 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_271775/cpld_restart_c96_p8 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/cpld_restart_c96_p8 Checking test 007 cpld_restart_c96_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -446,14 +446,14 @@ Checking test 007 cpld_restart_c96_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 258.540161 - 0: The maximum resident set size (KB) = 1331480 + 0: The total amount of wall time = 265.497462 + 0: The maximum resident set size (KB) = 1332248 Test 007 cpld_restart_c96_p8 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_debug_p8 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_271775/cpld_debug_p8 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/cpld_debug_p8 Checking test 008 cpld_debug_p8 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -504,14 +504,14 @@ Checking test 008 cpld_debug_p8 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK - 0: The total amount of wall time = 1328.254057 - 0: The maximum resident set size (KB) = 1421740 + 0: The total amount of wall time = 1339.079704 + 0: The maximum resident set size (KB) = 1426520 Test 008 cpld_debug_p8 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_271775/control +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/control Checking test 009 control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -558,14 +558,14 @@ Checking test 009 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 185.239004 - 0: The maximum resident set size (KB) = 461736 + 0: The total amount of wall time = 184.432629 + 0: The maximum resident set size (KB) = 462912 Test 009 control PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_271775/control_decomp +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/control_decomp Checking test 010 control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -608,28 +608,28 @@ Checking test 010 control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 186.658163 - 0: The maximum resident set size (KB) = 461896 + 0: The total amount of wall time = 193.501960 + 0: The maximum resident set size (KB) = 464368 Test 010 control_decomp PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_271775/control_2dwrtdecomp +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/control_2dwrtdecomp Checking test 011 control_2dwrtdecomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 179.306554 - 0: The maximum resident set size (KB) = 466832 + 0: The total amount of wall time = 176.648572 + 0: The maximum resident set size (KB) = 463360 Test 011 control_2dwrtdecomp PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_271775/control_2threads +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/control_2threads Checking test 012 control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -672,14 +672,14 @@ Checking test 012 control_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 803.575949 - 0: The maximum resident set size (KB) = 517620 + 0: The total amount of wall time = 799.155700 + 0: The maximum resident set size (KB) = 517580 Test 012 control_2threads PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_271775/control_restart +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/control_restart Checking test 013 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -718,14 +718,14 @@ Checking test 013 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 98.153980 - 0: The maximum resident set size (KB) = 212880 + 0: The total amount of wall time = 98.323105 + 0: The maximum resident set size (KB) = 208028 Test 013 control_restart PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_271775/control_fhzero +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/control_fhzero Checking test 014 control_fhzero results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -768,14 +768,14 @@ Checking test 014 control_fhzero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 175.563754 - 0: The maximum resident set size (KB) = 463768 + 0: The total amount of wall time = 185.232373 + 0: The maximum resident set size (KB) = 467464 Test 014 control_fhzero PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_CubedSphereGrid -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_271775/control_CubedSphereGrid +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/control_CubedSphereGrid Checking test 015 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -802,14 +802,14 @@ Checking test 015 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 176.501406 - 0: The maximum resident set size (KB) = 467940 + 0: The total amount of wall time = 182.090576 + 0: The maximum resident set size (KB) = 464540 Test 015 control_CubedSphereGrid PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_latlon -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_271775/control_latlon +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/control_latlon Checking test 016 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -820,14 +820,14 @@ Checking test 016 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 179.267874 - 0: The maximum resident set size (KB) = 463444 + 0: The total amount of wall time = 181.638287 + 0: The maximum resident set size (KB) = 465520 Test 016 control_latlon PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_271775/control_wrtGauss_netcdf_parallel +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/control_wrtGauss_netcdf_parallel Checking test 017 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc .........OK @@ -838,14 +838,14 @@ Checking test 017 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 184.673023 - 0: The maximum resident set size (KB) = 468640 + 0: The total amount of wall time = 184.703991 + 0: The maximum resident set size (KB) = 463764 Test 017 control_wrtGauss_netcdf_parallel PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_c48 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_271775/control_c48 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/control_c48 Checking test 018 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -884,14 +884,14 @@ Checking test 018 control_c48 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0: The total amount of wall time = 560.454910 -0: The maximum resident set size (KB) = 656808 +0: The total amount of wall time = 562.332080 +0: The maximum resident set size (KB) = 657760 Test 018 control_c48 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_c192 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_271775/control_c192 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/control_c192 Checking test 019 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -902,14 +902,14 @@ Checking test 019 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 694.687139 - 0: The maximum resident set size (KB) = 561816 + 0: The total amount of wall time = 693.169389 + 0: The maximum resident set size (KB) = 563128 Test 019 control_c192 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_c384 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_271775/control_c384 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/control_c384 Checking test 020 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -920,14 +920,14 @@ Checking test 020 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 851.989788 - 0: The maximum resident set size (KB) = 691200 + 0: The total amount of wall time = 850.105677 + 0: The maximum resident set size (KB) = 686152 Test 020 control_c384 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_c384gdas -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_271775/control_c384gdas +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/control_c384gdas Checking test 021 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -970,14 +970,14 @@ Checking test 021 control_c384gdas results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 789.850186 - 0: The maximum resident set size (KB) = 767272 + 0: The total amount of wall time = 798.005568 + 0: The maximum resident set size (KB) = 774724 Test 021 control_c384gdas PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_stochy -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_271775/control_stochy +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/control_stochy Checking test 022 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -988,28 +988,28 @@ Checking test 022 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 125.639364 - 0: The maximum resident set size (KB) = 466036 + 0: The total amount of wall time = 126.764996 + 0: The maximum resident set size (KB) = 469528 Test 022 control_stochy PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_stochy -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_271775/control_stochy_restart +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/control_stochy_restart Checking test 023 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 = 69.085587 - 0: The maximum resident set size (KB) = 231216 + 0: The total amount of wall time = 69.700258 + 0: The maximum resident set size (KB) = 231288 Test 023 control_stochy_restart PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_lndp -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_271775/control_lndp +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/control_lndp Checking test 024 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1020,14 +1020,14 @@ Checking test 024 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 108.769753 - 0: The maximum resident set size (KB) = 469504 + 0: The total amount of wall time = 108.641430 + 0: The maximum resident set size (KB) = 466364 Test 024 control_lndp PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_iovr4 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_271775/control_iovr4 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/control_iovr4 Checking test 025 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1042,14 +1042,14 @@ Checking test 025 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 186.243538 - 0: The maximum resident set size (KB) = 463188 + 0: The total amount of wall time = 184.315436 + 0: The maximum resident set size (KB) = 466108 Test 025 control_iovr4 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_iovr5 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_271775/control_iovr5 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/control_iovr5 Checking test 026 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1064,14 +1064,14 @@ Checking test 026 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 186.031490 - 0: The maximum resident set size (KB) = 462528 + 0: The total amount of wall time = 183.077246 + 0: The maximum resident set size (KB) = 462068 Test 026 control_iovr5 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_271775/control_p8 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/control_p8 Checking test 027 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1118,14 +1118,14 @@ Checking test 027 control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 219.241156 - 0: The maximum resident set size (KB) = 854656 + 0: The total amount of wall time = 215.943009 + 0: The maximum resident set size (KB) = 859444 Test 027 control_p8 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_271775/control_restart_p8 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/control_restart_p8 Checking test 028 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1164,14 +1164,14 @@ Checking test 028 control_restart_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 119.483646 - 0: The maximum resident set size (KB) = 597192 + 0: The total amount of wall time = 121.556022 + 0: The maximum resident set size (KB) = 598700 Test 028 control_restart_p8 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_271775/control_decomp_p8 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/control_decomp_p8 Checking test 029 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1214,14 +1214,14 @@ Checking test 029 control_decomp_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 220.220641 - 0: The maximum resident set size (KB) = 844960 + 0: The total amount of wall time = 221.675494 + 0: The maximum resident set size (KB) = 842660 Test 029 control_decomp_p8 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_271775/control_2threads_p8 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/control_2threads_p8 Checking test 030 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1264,14 +1264,14 @@ Checking test 030 control_2threads_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 833.667273 - 0: The maximum resident set size (KB) = 929776 + 0: The total amount of wall time = 916.312981 + 0: The maximum resident set size (KB) = 930444 Test 030 control_2threads_p8 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_p7_rrtmgp -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_271775/control_p7_rrtmgp +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/control_p7_rrtmgp Checking test 031 control_p7_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1318,14 +1318,14 @@ Checking test 031 control_p7_rrtmgp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 264.847333 - 0: The maximum resident set size (KB) = 594688 + 0: The total amount of wall time = 266.099946 + 0: The maximum resident set size (KB) = 601788 Test 031 control_p7_rrtmgp PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/fv3_regional_control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_271775/regional_control +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/regional_control Checking test 032 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1336,42 +1336,42 @@ Checking test 032 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 462.820226 - 0: The maximum resident set size (KB) = 581780 + 0: The total amount of wall time = 470.527858 + 0: The maximum resident set size (KB) = 581424 Test 032 regional_control PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/fv3_regional_control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_271775/regional_restart +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/regional_restart Checking test 033 regional_restart results .... Comparing dynf024.nc .........OK Comparing phyf024.nc .........OK Comparing PRSLEV.GrbF24 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 263.289636 - 0: The maximum resident set size (KB) = 580692 + 0: The total amount of wall time = 270.549494 + 0: The maximum resident set size (KB) = 581628 Test 033 regional_restart PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/fv3_regional_control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_271775/regional_control_2dwrtdecomp +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/regional_control_2dwrtdecomp Checking test 034 regional_control_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK - 0: The total amount of wall time = 458.843675 - 0: The maximum resident set size (KB) = 576000 + 0: The total amount of wall time = 860.285109 + 0: The maximum resident set size (KB) = 576208 Test 034 regional_control_2dwrtdecomp PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/fv3_regional_noquilt -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_271775/regional_noquilt +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/regional_noquilt Checking test 035 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1379,14 +1379,14 @@ Checking test 035 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 = 486.661057 - 0: The maximum resident set size (KB) = 588196 + 0: The total amount of wall time = 885.400770 + 0: The maximum resident set size (KB) = 585736 Test 035 regional_noquilt PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/fv3_regional_hafs -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_271775/regional_hafs +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/regional_hafs Checking test 036 regional_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1395,28 +1395,28 @@ Checking test 036 regional_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK - 0: The total amount of wall time = 455.586005 - 0: The maximum resident set size (KB) = 580832 + 0: The total amount of wall time = 867.292035 + 0: The maximum resident set size (KB) = 584364 Test 036 regional_hafs PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/fv3_regional_netcdf_parallel -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_271775/regional_netcdf_parallel +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/regional_netcdf_parallel Checking test 037 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf024.nc ............ALT CHECK......OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK - 0: The total amount of wall time = 453.889407 - 0: The maximum resident set size (KB) = 574940 + 0: The total amount of wall time = 866.035808 + 0: The maximum resident set size (KB) = 577312 Test 037 regional_netcdf_parallel PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/fv3_regional_RRTMGP -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_271775/regional_RRTMGP +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/regional_RRTMGP Checking test 038 regional_RRTMGP results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1427,14 +1427,14 @@ Checking test 038 regional_RRTMGP results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 600.986500 - 0: The maximum resident set size (KB) = 703268 + 0: The total amount of wall time = 1009.462690 + 0: The maximum resident set size (KB) = 704764 Test 038 regional_RRTMGP PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/fv3_regional_3km -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_271775/regional_3km +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/regional_3km Checking test 039 regional_3km results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1445,14 +1445,14 @@ Checking test 039 regional_3km results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 386.354098 - 0: The maximum resident set size (KB) = 621532 + 0: The total amount of wall time = 393.607170 + 0: The maximum resident set size (KB) = 622548 Test 039 regional_3km PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_271775/rap_control +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/rap_control Checking test 040 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1499,14 +1499,14 @@ Checking test 040 rap_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 509.580836 - 0: The maximum resident set size (KB) = 833148 + 0: The total amount of wall time = 591.926791 + 0: The maximum resident set size (KB) = 834252 Test 040 rap_control PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/regional_spp_sppt_shum_skeb -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_271775/regional_spp_sppt_shum_skeb +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/regional_spp_sppt_shum_skeb Checking test 041 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -1517,14 +1517,14 @@ Checking test 041 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 1341.705961 - 0: The maximum resident set size (KB) = 921824 + 0: The total amount of wall time = 1381.758786 + 0: The maximum resident set size (KB) = 924696 Test 041 regional_spp_sppt_shum_skeb PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_271775/rap_restart +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/rap_restart Checking test 042 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1563,14 +1563,14 @@ Checking test 042 rap_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 259.878764 - 0: The maximum resident set size (KB) = 583444 + 0: The total amount of wall time = 256.211926 + 0: The maximum resident set size (KB) = 585880 Test 042 rap_restart PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_271775/rap_sfcdiff +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/rap_sfcdiff Checking test 043 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1617,14 +1617,14 @@ Checking test 043 rap_sfcdiff results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 507.527812 - 0: The maximum resident set size (KB) = 835472 + 0: The total amount of wall time = 508.634645 + 0: The maximum resident set size (KB) = 834368 Test 043 rap_sfcdiff PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_271775/rap_sfcdiff_restart +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/rap_sfcdiff_restart Checking test 044 rap_sfcdiff_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1663,14 +1663,14 @@ Checking test 044 rap_sfcdiff_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 259.822650 - 0: The maximum resident set size (KB) = 590308 + 0: The total amount of wall time = 260.599731 + 0: The maximum resident set size (KB) = 590320 Test 044 rap_sfcdiff_restart PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/hrrr_control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_271775/hrrr_control +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/hrrr_control Checking test 045 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1717,14 +1717,14 @@ Checking test 045 hrrr_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 486.565491 - 0: The maximum resident set size (KB) = 837872 + 0: The total amount of wall time = 492.197455 + 0: The maximum resident set size (KB) = 830820 Test 045 hrrr_control PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rrfs_v1beta -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_271775/rrfs_v1beta +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/rrfs_v1beta Checking test 046 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1771,14 +1771,14 @@ Checking test 046 rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 500.925358 - 0: The maximum resident set size (KB) = 833776 + 0: The total amount of wall time = 502.232002 + 0: The maximum resident set size (KB) = 833172 Test 046 rrfs_v1beta PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rrfs_v1nssl -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_271775/rrfs_v1nssl +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/rrfs_v1nssl Checking test 047 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1793,14 +1793,14 @@ Checking test 047 rrfs_v1nssl results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 616.321830 - 0: The maximum resident set size (KB) = 525364 + 0: The total amount of wall time = 615.924048 + 0: The maximum resident set size (KB) = 523664 Test 047 rrfs_v1nssl PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_271775/rrfs_v1nssl_nohailnoccn +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/rrfs_v1nssl_nohailnoccn Checking test 048 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1815,14 +1815,14 @@ Checking test 048 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 598.318259 - 0: The maximum resident set size (KB) = 517724 + 0: The total amount of wall time = 602.300029 + 0: The maximum resident set size (KB) = 514480 Test 048 rrfs_v1nssl_nohailnoccn PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_271775/rrfs_conus13km_hrrr_warm +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/rrfs_conus13km_hrrr_warm Checking test 049 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -1831,14 +1831,14 @@ Checking test 049 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 238.368852 - 0: The maximum resident set size (KB) = 661128 + 0: The total amount of wall time = 237.179881 + 0: The maximum resident set size (KB) = 659336 Test 049 rrfs_conus13km_hrrr_warm PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_271775/rrfs_conus13km_radar_tten_warm +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/rrfs_conus13km_radar_tten_warm Checking test 050 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -1847,14 +1847,14 @@ Checking test 050 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 241.014339 - 0: The maximum resident set size (KB) = 660872 + 0: The total amount of wall time = 241.530460 + 0: The maximum resident set size (KB) = 661668 Test 050 rrfs_conus13km_radar_tten_warm PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_rrtmgp -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_271775/control_rrtmgp +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/control_rrtmgp Checking test 051 control_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1865,14 +1865,14 @@ Checking test 051 control_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 282.311768 - 0: The maximum resident set size (KB) = 591604 + 0: The total amount of wall time = 284.614039 + 0: The maximum resident set size (KB) = 590228 Test 051 control_rrtmgp PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_rrtmgp_c192 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_271775/control_rrtmgp_c192 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/control_rrtmgp_c192 Checking test 052 control_rrtmgp_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1883,14 +1883,14 @@ Checking test 052 control_rrtmgp_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 739.485722 - 0: The maximum resident set size (KB) = 788768 + 0: The total amount of wall time = 742.762088 + 0: The maximum resident set size (KB) = 792792 Test 052 control_rrtmgp_c192 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_csawmg -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_271775/control_csawmg +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/control_csawmg Checking test 053 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1901,14 +1901,14 @@ Checking test 053 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 451.971131 - 0: The maximum resident set size (KB) = 528292 + 0: The total amount of wall time = 461.365456 + 0: The maximum resident set size (KB) = 532736 Test 053 control_csawmg PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_csawmgt -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_271775/control_csawmgt +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/control_csawmgt Checking test 054 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1919,14 +1919,14 @@ Checking test 054 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 450.182905 - 0: The maximum resident set size (KB) = 529420 + 0: The total amount of wall time = 445.567842 + 0: The maximum resident set size (KB) = 530736 Test 054 control_csawmgt PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_flake -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_271775/control_flake +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/control_flake Checking test 055 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1937,14 +1937,14 @@ Checking test 055 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 324.323709 - 0: The maximum resident set size (KB) = 535760 + 0: The total amount of wall time = 316.790268 + 0: The maximum resident set size (KB) = 535104 Test 055 control_flake PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_ras -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_271775/control_ras +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/control_ras Checking test 056 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1955,14 +1955,14 @@ Checking test 056 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 243.505369 - 0: The maximum resident set size (KB) = 499364 + 0: The total amount of wall time = 242.618653 + 0: The maximum resident set size (KB) = 494664 Test 056 control_ras PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_thompson -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_271775/control_thompson +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/control_thompson Checking test 057 control_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1973,14 +1973,14 @@ Checking test 057 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 304.867134 - 0: The maximum resident set size (KB) = 849364 + 0: The total amount of wall time = 306.186366 + 0: The maximum resident set size (KB) = 848032 Test 057 control_thompson PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_thompson_no_aero -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_271775/control_thompson_no_aero +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/control_thompson_no_aero Checking test 058 control_thompson_no_aero results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1991,54 +1991,54 @@ Checking test 058 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 291.434678 - 0: The maximum resident set size (KB) = 839884 + 0: The total amount of wall time = 291.078407 + 0: The maximum resident set size (KB) = 844352 Test 058 control_thompson_no_aero PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_wam_repro -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_271775/control_wam_repro +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/control_wam_repro Checking test 059 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 167.114704 - 0: The maximum resident set size (KB) = 231300 + 0: The total amount of wall time = 168.397620 + 0: The maximum resident set size (KB) = 230560 Test 059 control_wam PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_271775/control_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/control_debug Checking test 060 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 = 193.574256 - 0: The maximum resident set size (KB) = 625588 + 0: The total amount of wall time = 191.333782 + 0: The maximum resident set size (KB) = 632140 Test 060 control_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_271775/control_2threads_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/control_2threads_debug Checking test 061 control_2threads_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 372.452022 - 0: The maximum resident set size (KB) = 679536 + 0: The total amount of wall time = 379.698219 + 0: The maximum resident set size (KB) = 680720 Test 061 control_2threads_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_CubedSphereGrid_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_271775/control_CubedSphereGrid_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/control_CubedSphereGrid_debug Checking test 062 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2065,434 +2065,428 @@ Checking test 062 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 210.981976 - 0: The maximum resident set size (KB) = 623800 + 0: The total amount of wall time = 207.645545 + 0: The maximum resident set size (KB) = 632236 Test 062 control_CubedSphereGrid_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_271775/control_wrtGauss_netcdf_parallel_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/control_wrtGauss_netcdf_parallel_debug Checking test 063 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 195.385544 - 0: The maximum resident set size (KB) = 626692 + 0: The total amount of wall time = 193.428156 + 0: The maximum resident set size (KB) = 625864 Test 063 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_stochy_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_271775/control_stochy_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/control_stochy_debug Checking test 064 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 = 221.626030 - 0: The maximum resident set size (KB) = 630416 + 0: The total amount of wall time = 219.362733 + 0: The maximum resident set size (KB) = 633600 Test 064 control_stochy_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_lndp_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_271775/control_lndp_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/control_lndp_debug Checking test 065 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 = 200.991958 - 0: The maximum resident set size (KB) = 633336 + 0: The total amount of wall time = 196.497718 + 0: The maximum resident set size (KB) = 638508 Test 065 control_lndp_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_rrtmgp_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_271775/control_rrtmgp_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/control_rrtmgp_debug Checking test 066 control_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 218.370697 - 0: The maximum resident set size (KB) = 728140 + 0: The total amount of wall time = 212.057583 + 0: The maximum resident set size (KB) = 730868 Test 066 control_rrtmgp_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_csawmg_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_271775/control_csawmg_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/control_csawmg_debug Checking test 067 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 = 312.918993 - 0: The maximum resident set size (KB) = 669928 + 0: The total amount of wall time = 305.496322 + 0: The maximum resident set size (KB) = 669760 Test 067 control_csawmg_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_csawmgt_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_271775/control_csawmgt_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/control_csawmgt_debug Checking test 068 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 = 302.093177 - 0: The maximum resident set size (KB) = 671424 + 0: The total amount of wall time = 299.649412 + 0: The maximum resident set size (KB) = 672816 Test 068 control_csawmgt_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_ras_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_271775/control_ras_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/control_ras_debug Checking test 069 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 = 198.228056 - 0: The maximum resident set size (KB) = 641092 + 0: The total amount of wall time = 196.212581 + 0: The maximum resident set size (KB) = 641888 Test 069 control_ras_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_diag_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_271775/control_diag_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/control_diag_debug Checking test 070 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 = 206.417233 - 0: The maximum resident set size (KB) = 685664 + 0: The total amount of wall time = 205.978020 + 0: The maximum resident set size (KB) = 685968 Test 070 control_diag_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_debug_p8 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_271775/control_debug_p8 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/control_debug_p8 Checking test 071 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 = 213.306219 - 0: The maximum resident set size (KB) = 1016244 + 0: The total amount of wall time = 213.201884 + 0: The maximum resident set size (KB) = 1019024 Test 071 control_debug_p8 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_thompson_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_271775/control_thompson_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/control_thompson_debug Checking test 072 control_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 227.177746 - 0: The maximum resident set size (KB) = 992412 + 0: The total amount of wall time = 226.316930 + 0: The maximum resident set size (KB) = 993172 Test 072 control_thompson_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_thompson_no_aero_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_271775/control_thompson_no_aero_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/control_thompson_no_aero_debug Checking test 073 control_thompson_no_aero_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 215.929920 - 0: The maximum resident set size (KB) = 983192 + 0: The total amount of wall time = 217.982168 + 0: The maximum resident set size (KB) = 987560 Test 073 control_thompson_no_aero_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_thompson_debug_extdiag -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_271775/control_thompson_extdiag_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/control_thompson_extdiag_debug Checking test 074 control_thompson_extdiag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 236.326266 - 0: The maximum resident set size (KB) = 1019696 + 0: The total amount of wall time = 236.517859 + 0: The maximum resident set size (KB) = 1022000 Test 074 control_thompson_extdiag_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_thompson_progcld_thompson_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_271775/control_thompson_progcld_thompson_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/control_thompson_progcld_thompson_debug Checking test 075 control_thompson_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 229.841059 - 0: The maximum resident set size (KB) = 991708 + 0: The total amount of wall time = 226.462881 + 0: The maximum resident set size (KB) = 991000 Test 075 control_thompson_progcld_thompson_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/fv3_regional_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_271775/regional_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/regional_debug Checking test 076 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 = 323.347141 - 0: The maximum resident set size (KB) = 607796 + 0: The total amount of wall time = 330.989689 + 0: The maximum resident set size (KB) = 615880 Test 076 regional_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_control_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_271775/rap_control_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/rap_control_debug Checking test 077 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 350.278957 - 0: The maximum resident set size (KB) = 996548 + 0: The total amount of wall time = 350.332286 + 0: The maximum resident set size (KB) = 998868 Test 077 rap_control_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_control_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_271775/rap_unified_drag_suite_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/rap_unified_drag_suite_debug Checking test 078 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 = 349.462015 - 0: The maximum resident set size (KB) = 995572 + 0: The total amount of wall time = 349.665835 + 0: The maximum resident set size (KB) = 994712 Test 078 rap_unified_drag_suite_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_diag_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_271775/rap_diag_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/rap_diag_debug Checking test 079 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 = 372.578534 - 0: The total amount of wall time = 372.509582 - 0: The maximum resident set size (KB) = 1077172 - 0: The maximum resident set size (KB) = 1079280 + 0: The total amount of wall time = 376.664497 + 0: The maximum resident set size (KB) = 1078804 -Test 079 rap_diag_debug PASS Tries: 2 +Test 079 rap_diag_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_cires_ugwp_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_271775/rap_cires_ugwp_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/rap_cires_ugwp_debug Checking test 080 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 = 360.265110 - 0: The total amount of wall time = 357.008008 - 0: The maximum resident set size (KB) = 1001984 - 0: The maximum resident set size (KB) = 997048 + 0: The total amount of wall time = 361.203172 + 0: The maximum resident set size (KB) = 1002472 -Test 080 rap_cires_ugwp_debug PASS Tries: 2 +Test 080 rap_cires_ugwp_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_cires_ugwp_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_271775/rap_unified_ugwp_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/rap_unified_ugwp_debug Checking test 081 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 = 357.644240 - 0: The total amount of wall time = 358.271620 - 0: The maximum resident set size (KB) = 991568 - 0: The maximum resident set size (KB) = 991864 + 0: The total amount of wall time = 360.330752 + 0: The maximum resident set size (KB) = 996960 -Test 081 rap_unified_ugwp_debug PASS Tries: 2 +Test 081 rap_unified_ugwp_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_lndp_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_271775/rap_lndp_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/rap_lndp_debug Checking test 082 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 = 355.473358 - 0: The maximum resident set size (KB) = 992084 + 0: The total amount of wall time = 352.180857 + 0: The maximum resident set size (KB) = 994176 Test 082 rap_lndp_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_flake_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_271775/rap_flake_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/rap_flake_debug Checking test 083 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 = 350.302636 - 0: The maximum resident set size (KB) = 995940 + 0: The total amount of wall time = 352.085145 + 0: The maximum resident set size (KB) = 994404 Test 083 rap_flake_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_progcld_thompson_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_271775/rap_progcld_thompson_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/rap_progcld_thompson_debug Checking test 084 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 = 352.991741 - 0: The maximum resident set size (KB) = 990188 + 0: The total amount of wall time = 351.310185 + 0: The maximum resident set size (KB) = 995084 Test 084 rap_progcld_thompson_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_noah_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_271775/rap_noah_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/rap_noah_debug Checking test 085 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 = 342.663938 - 0: The maximum resident set size (KB) = 992688 + 0: The total amount of wall time = 348.126934 + 0: The maximum resident set size (KB) = 997824 Test 085 rap_noah_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_rrtmgp_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_271775/rap_rrtmgp_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/rap_rrtmgp_debug Checking test 086 rap_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 593.267473 - 0: The maximum resident set size (KB) = 1103448 + 0: The total amount of wall time = 627.433507 + 0: The maximum resident set size (KB) = 1108512 Test 086 rap_rrtmgp_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_sfcdiff_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_271775/rap_sfcdiff_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/rap_sfcdiff_debug Checking test 087 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 = 350.397688 - 0: The maximum resident set size (KB) = 995300 + 0: The total amount of wall time = 351.059548 + 0: The maximum resident set size (KB) = 993984 Test 087 rap_sfcdiff_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_271775/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/rap_noah_sfcdiff_cires_ugwp_debug Checking test 088 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 = 578.773714 - 0: The maximum resident set size (KB) = 1000900 + 0: The total amount of wall time = 630.547977 + 0: The maximum resident set size (KB) = 997432 Test 088 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rrfs_v1beta_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_271775/rrfs_v1beta_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/rrfs_v1beta_debug Checking test 089 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 = 349.462523 - 0: The maximum resident set size (KB) = 998264 + 0: The total amount of wall time = 346.939517 + 0: The maximum resident set size (KB) = 994336 Test 089 rrfs_v1beta_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_wam_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_271775/control_wam_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/control_wam_debug Checking test 090 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 367.980447 - 0: The maximum resident set size (KB) = 255948 + 0: The total amount of wall time = 367.257693 + 0: The maximum resident set size (KB) = 256680 Test 090 control_wam_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/hafs_regional_atm -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_271775/hafs_regional_atm +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/hafs_regional_atm Checking test 091 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc ............ALT CHECK......OK - 0: The total amount of wall time = 1147.992974 - 0: The maximum resident set size (KB) = 701060 + 0: The total amount of wall time = 1194.829489 + 0: The maximum resident set size (KB) = 713444 Test 091 hafs_regional_atm PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_271775/hafs_regional_atm_thompson_gfdlsf +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/hafs_regional_atm_thompson_gfdlsf Checking test 092 hafs_regional_atm_thompson_gfdlsf results .... - Comparing atmf006.nc ............ALT CHECK......OK + Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 1299.213506 - 0: The maximum resident set size (KB) = 1061148 + 0: The total amount of wall time = 1295.725691 + 0: The maximum resident set size (KB) = 1062036 Test 092 hafs_regional_atm_thompson_gfdlsf PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/hafs_regional_atm_ocn -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_271775/hafs_regional_atm_ocn +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/hafs_regional_atm_ocn Checking test 093 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -2501,28 +2495,28 @@ Checking test 093 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 = 472.553780 - 0: The maximum resident set size (KB) = 714244 + 0: The total amount of wall time = 524.607912 + 0: The maximum resident set size (KB) = 716764 Test 093 hafs_regional_atm_ocn PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/hafs_regional_atm_wav -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_271775/hafs_regional_atm_wav +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/hafs_regional_atm_wav Checking test 094 hafs_regional_atm_wav results .... - Comparing atmf006.nc ............ALT CHECK......OK + Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 1197.610780 - 0: The maximum resident set size (KB) = 713604 + 0: The total amount of wall time = 1198.427533 + 0: The maximum resident set size (KB) = 714864 Test 094 hafs_regional_atm_wav PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/hafs_regional_atm_ocn_wav -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_271775/hafs_regional_atm_ocn_wav +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/hafs_regional_atm_ocn_wav Checking test 095 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -2531,29 +2525,29 @@ Checking test 095 hafs_regional_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 1315.634190 - 0: The maximum resident set size (KB) = 714644 + 0: The total amount of wall time = 1299.692375 + 0: The maximum resident set size (KB) = 728952 Test 095 hafs_regional_atm_ocn_wav PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/hafs_regional_docn -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_271775/hafs_regional_docn +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/hafs_regional_docn Checking test 096 hafs_regional_docn results .... - Comparing atmf006.nc .........OK + Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 467.582448 - 0: The maximum resident set size (KB) = 717056 + 0: The total amount of wall time = 525.015172 + 0: The maximum resident set size (KB) = 720476 Test 096 hafs_regional_docn PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/hafs_regional_docn_oisst -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_271775/hafs_regional_docn_oisst +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/hafs_regional_docn_oisst Checking test 097 hafs_regional_docn_oisst results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc .........OK @@ -2561,118 +2555,118 @@ Checking test 097 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 = 464.654015 - 0: The maximum resident set size (KB) = 715856 + 0: The total amount of wall time = 528.543237 + 0: The maximum resident set size (KB) = 719852 Test 097 hafs_regional_docn_oisst PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/hafs_regional_datm_cdeps -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_271775/hafs_regional_datm_cdeps +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/hafs_regional_datm_cdeps Checking test 098 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 = 1242.468039 - 0: The maximum resident set size (KB) = 848436 + 0: The total amount of wall time = 1455.467516 + 0: The maximum resident set size (KB) = 855524 Test 098 hafs_regional_datm_cdeps PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_271775/datm_cdeps_control_cfsr +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/datm_cdeps_control_cfsr Checking test 099 datm_cdeps_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 198.212973 - 0: The maximum resident set size (KB) = 746148 + 0: The total amount of wall time = 196.853669 + 0: The maximum resident set size (KB) = 721516 Test 099 datm_cdeps_control_cfsr PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_271775/datm_cdeps_restart_cfsr +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/datm_cdeps_restart_cfsr Checking test 100 datm_cdeps_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 118.555664 - 0: The maximum resident set size (KB) = 726088 + 0: The total amount of wall time = 122.941762 + 0: The maximum resident set size (KB) = 723748 Test 100 datm_cdeps_restart_cfsr PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_control_gefs -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_271775/datm_cdeps_control_gefs +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/datm_cdeps_control_gefs Checking test 101 datm_cdeps_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 194.617423 - 0: The maximum resident set size (KB) = 622564 + 0: The total amount of wall time = 193.260310 + 0: The maximum resident set size (KB) = 623880 Test 101 datm_cdeps_control_gefs PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_iau_gefs -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_271775/datm_cdeps_iau_gefs +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/datm_cdeps_iau_gefs Checking test 102 datm_cdeps_iau_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 194.636010 - 0: The maximum resident set size (KB) = 623052 + 0: The total amount of wall time = 196.085132 + 0: The maximum resident set size (KB) = 624916 Test 102 datm_cdeps_iau_gefs PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_stochy_gefs -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_271775/datm_cdeps_stochy_gefs +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/datm_cdeps_stochy_gefs Checking test 103 datm_cdeps_stochy_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 195.420916 - 0: The maximum resident set size (KB) = 622380 + 0: The total amount of wall time = 198.143177 + 0: The maximum resident set size (KB) = 625824 Test 103 datm_cdeps_stochy_gefs PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_bulk_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_271775/datm_cdeps_bulk_cfsr +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/datm_cdeps_bulk_cfsr Checking test 104 datm_cdeps_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 198.159892 - 0: The maximum resident set size (KB) = 743096 + 0: The total amount of wall time = 200.409862 + 0: The maximum resident set size (KB) = 723716 Test 104 datm_cdeps_bulk_cfsr PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_bulk_gefs -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_271775/datm_cdeps_bulk_gefs +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/datm_cdeps_bulk_gefs Checking test 105 datm_cdeps_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 192.921831 - 0: The maximum resident set size (KB) = 625092 + 0: The total amount of wall time = 340.912270 + 0: The maximum resident set size (KB) = 623132 Test 105 datm_cdeps_bulk_gefs PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_mx025_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_271775/datm_cdeps_mx025_cfsr +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/datm_cdeps_mx025_cfsr Checking test 106 datm_cdeps_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -2681,14 +2675,14 @@ Checking test 106 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 = 425.985086 - 0: The maximum resident set size (KB) = 556420 + 0: The total amount of wall time = 647.515480 + 0: The maximum resident set size (KB) = 559616 Test 106 datm_cdeps_mx025_cfsr PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_mx025_gefs -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_271775/datm_cdeps_mx025_gefs +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/datm_cdeps_mx025_gefs Checking test 107 datm_cdeps_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -2697,64 +2691,64 @@ Checking test 107 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 416.895337 - 0: The maximum resident set size (KB) = 528628 + 0: The total amount of wall time = 627.514573 + 0: The maximum resident set size (KB) = 527392 Test 107 datm_cdeps_mx025_gefs PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_271775/datm_cdeps_multiple_files_cfsr +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/datm_cdeps_multiple_files_cfsr Checking test 108 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 = 195.289305 - 0: The maximum resident set size (KB) = 725712 + 0: The total amount of wall time = 336.896706 + 0: The maximum resident set size (KB) = 724532 Test 108 datm_cdeps_multiple_files_cfsr PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_271775/datm_cdeps_3072x1536_cfsr +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/datm_cdeps_3072x1536_cfsr Checking test 109 datm_cdeps_3072x1536_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 276.030581 - 0: The maximum resident set size (KB) = 1836260 + 0: The total amount of wall time = 416.076097 + 0: The maximum resident set size (KB) = 1837780 Test 109 datm_cdeps_3072x1536_cfsr PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_gfs -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_271775/datm_cdeps_gfs +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/datm_cdeps_gfs Checking test 110 datm_cdeps_gfs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 279.073976 - 0: The maximum resident set size (KB) = 1837780 + 0: The total amount of wall time = 544.593311 + 0: The maximum resident set size (KB) = 1840624 Test 110 datm_cdeps_gfs PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_debug_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_271775/datm_cdeps_debug_cfsr +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/datm_cdeps_debug_cfsr Checking test 111 datm_cdeps_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 578.094882 - 0: The maximum resident set size (KB) = 733920 + 0: The total amount of wall time = 751.843793 + 0: The maximum resident set size (KB) = 733368 Test 111 datm_cdeps_debug_cfsr PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_atmwav -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_271775/control_atmwav +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_291312/control_atmwav Checking test 112 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2798,12 +2792,12 @@ Checking test 112 control_atmwav results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 115.997524 - 0: The maximum resident set size (KB) = 490324 + 0: The total amount of wall time = 272.507105 + 0: The maximum resident set size (KB) = 487536 Test 112 control_atmwav PASS REGRESSION TEST WAS SUCCESSFUL -Fri Apr 1 21:09:07 GMT 2022 -Elapsed time: 01h:37m:36s. Have a nice day! +Mon Apr 4 17:56:28 GMT 2022 +Elapsed time: 02h:24m:33s. Have a nice day! diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index 9ba9623d3b..d3c645571d 100755 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,24 +1,24 @@ -Fri Apr 1 14:52:06 CDT 2022 +Mon Apr 4 10:31:53 CDT 2022 Start Regression test -Compile 001 elapsed time 680 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1,FV3_GFS_v16_coupled_p7_rrtmgp,FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 188 seconds. -DAPP=S2SA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 003 elapsed time 327 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP,FV3_GFS_v16_p7_rrtmgp,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 004 elapsed time 327 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 005 elapsed time 341 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 299 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DREPRO=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -Compile 007 elapsed time 185 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp,FV3_GFS_v16_thompson,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 170 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP,FV3_RAP_cires_ugwp,FV3_RAP_unified_ugwp,FV3_RAP_flake -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 156 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP_noah,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 010 elapsed time 170 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 011 elapsed time 374 seconds. -DAPP=HAFSW -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 490 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 203 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 014 elapsed time 111 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 015 elapsed time 341 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 001 elapsed time 467 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1,FV3_GFS_v16_coupled_p7_rrtmgp,FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 229 seconds. -DAPP=S2SA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 003 elapsed time 358 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP,FV3_GFS_v16_p7_rrtmgp,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 004 elapsed time 345 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 005 elapsed time 354 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 308 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DREPRO=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit +Compile 007 elapsed time 180 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp,FV3_GFS_v16_thompson,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 175 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP,FV3_RAP_cires_ugwp,FV3_RAP_unified_ugwp,FV3_RAP_flake -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 172 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP_noah,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 010 elapsed time 159 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 011 elapsed time 396 seconds. -DAPP=HAFSW -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 408 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 191 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 014 elapsed time 100 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 015 elapsed time 405 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_control_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/cpld_control_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/cpld_control_p8 Checking test 001 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -84,14 +84,14 @@ Checking test 001 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK - 0: The total amount of wall time = 345.077994 - 0: The maximum resident set size (KB) = 1133688 + 0: The total amount of wall time = 347.312163 + 0: The maximum resident set size (KB) = 1137808 Test 001 cpld_control_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_control_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/cpld_2threads_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/cpld_2threads_p8 Checking test 002 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -145,14 +145,14 @@ Checking test 002 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK - 0: The total amount of wall time = 440.220283 - 0: The maximum resident set size (KB) = 1712036 + 0: The total amount of wall time = 438.329116 + 0: The maximum resident set size (KB) = 1713700 Test 002 cpld_2threads_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_control_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/cpld_decomp_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/cpld_decomp_p8 Checking test 003 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -206,14 +206,14 @@ Checking test 003 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK - 0: The total amount of wall time = 352.787589 - 0: The maximum resident set size (KB) = 1129252 + 0: The total amount of wall time = 349.771310 + 0: The maximum resident set size (KB) = 1131552 Test 003 cpld_decomp_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_control_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/cpld_mpi_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/cpld_mpi_p8 Checking test 004 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -267,14 +267,14 @@ Checking test 004 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK - 0: The total amount of wall time = 298.609559 - 0: The maximum resident set size (KB) = 1046580 + 0: The total amount of wall time = 294.775424 + 0: The maximum resident set size (KB) = 1045100 Test 004 cpld_mpi_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_control_p7_rrtmgp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/cpld_control_p7_rrtmgp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/cpld_control_p7_rrtmgp Checking test 005 cpld_control_p7_rrtmgp results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -327,14 +327,14 @@ Checking test 005 cpld_control_p7_rrtmgp results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK - 0: The total amount of wall time = 265.813826 - 0: The maximum resident set size (KB) = 666588 + 0: The total amount of wall time = 262.072293 + 0: The maximum resident set size (KB) = 666480 Test 005 cpld_control_p7_rrtmgp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_bmark_p7 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/cpld_bmark_p7 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/cpld_bmark_p7 Checking test 006 cpld_bmark_p7 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -379,14 +379,14 @@ Checking test 006 cpld_bmark_p7 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - 0: The total amount of wall time = 888.233745 - 0: The maximum resident set size (KB) = 1240804 + 0: The total amount of wall time = 893.427198 + 0: The maximum resident set size (KB) = 1236060 Test 006 cpld_bmark_p7 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_bmark_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/cpld_bmark_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/cpld_bmark_p8 Checking test 007 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -432,14 +432,14 @@ Checking test 007 cpld_bmark_p8 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - 0: The total amount of wall time = 1143.812044 - 0: The maximum resident set size (KB) = 2841812 + 0: The total amount of wall time = 1283.130614 + 0: The maximum resident set size (KB) = 2839316 Test 007 cpld_bmark_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_control_c96_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/cpld_control_c96_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/cpld_control_c96_p8 Checking test 008 cpld_control_c96_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -502,14 +502,14 @@ Checking test 008 cpld_control_c96_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 339.428697 - 0: The maximum resident set size (KB) = 1147392 + 0: The total amount of wall time = 337.996731 + 0: The maximum resident set size (KB) = 1148796 Test 008 cpld_control_c96_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_control_c96_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/cpld_restart_c96_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/cpld_restart_c96_p8 Checking test 009 cpld_restart_c96_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -560,14 +560,14 @@ Checking test 009 cpld_restart_c96_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 199.770935 - 0: The maximum resident set size (KB) = 1108948 + 0: The total amount of wall time = 198.001521 + 0: The maximum resident set size (KB) = 1101980 Test 009 cpld_restart_c96_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_control_c192_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/cpld_control_c192_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/cpld_control_c192_p8 Checking test 010 cpld_control_c192_p8 results .... Comparing sfcf036.tile1.nc .........OK Comparing sfcf036.tile2.nc .........OK @@ -618,14 +618,14 @@ Checking test 010 cpld_control_c192_p8 results .... Comparing RESTART/iced.2021-03-23-64800.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-64800.nc .........OK - 0: The total amount of wall time = 1468.699929 - 0: The maximum resident set size (KB) = 1586460 + 0: The total amount of wall time = 1481.041304 + 0: The maximum resident set size (KB) = 1592024 Test 010 cpld_control_c192_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_control_c192_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/cpld_restart_c192_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/cpld_restart_c192_p8 Checking test 011 cpld_restart_c192_p8 results .... Comparing sfcf036.tile1.nc .........OK Comparing sfcf036.tile2.nc .........OK @@ -676,14 +676,14 @@ Checking test 011 cpld_restart_c192_p8 results .... Comparing RESTART/iced.2021-03-23-64800.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-64800.nc .........OK - 0: The total amount of wall time = 1134.028026 - 0: The maximum resident set size (KB) = 1777540 + 0: The total amount of wall time = 1105.649615 + 0: The maximum resident set size (KB) = 1781256 Test 011 cpld_restart_c192_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_control_c384_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/cpld_control_c384_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/cpld_control_c384_p8 Checking test 012 cpld_control_c384_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -727,14 +727,14 @@ Checking test 012 cpld_control_c384_p8 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK - 0: The total amount of wall time = 1330.062539 - 0: The maximum resident set size (KB) = 2826956 + 0: The total amount of wall time = 1208.166284 + 0: The maximum resident set size (KB) = 2827548 Test 012 cpld_control_c384_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_control_c384_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/cpld_restart_c384_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/cpld_restart_c384_p8 Checking test 013 cpld_restart_c384_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -778,14 +778,14 @@ Checking test 013 cpld_restart_c384_p8 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK - 0: The total amount of wall time = 721.355927 - 0: The maximum resident set size (KB) = 2798200 + 0: The total amount of wall time = 772.017237 + 0: The maximum resident set size (KB) = 2759992 Test 013 cpld_restart_c384_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/cpld_debug_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/cpld_debug_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/cpld_debug_p8 Checking test 014 cpld_debug_p8 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -836,14 +836,14 @@ Checking test 014 cpld_debug_p8 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK - 0: The total amount of wall time = 1041.035441 - 0: The maximum resident set size (KB) = 1273152 + 0: The total amount of wall time = 1066.667762 + 0: The maximum resident set size (KB) = 1268004 Test 014 cpld_debug_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/control Checking test 015 control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -890,14 +890,14 @@ Checking test 015 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 128.522774 - 0: The maximum resident set size (KB) = 467124 + 0: The total amount of wall time = 130.851710 + 0: The maximum resident set size (KB) = 467360 Test 015 control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/control_decomp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/control_decomp Checking test 016 control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -940,28 +940,28 @@ Checking test 016 control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 143.301179 - 0: The maximum resident set size (KB) = 462400 + 0: The total amount of wall time = 135.425544 + 0: The maximum resident set size (KB) = 466960 Test 016 control_decomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/control_2dwrtdecomp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/control_2dwrtdecomp Checking test 017 control_2dwrtdecomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 123.203426 - 0: The maximum resident set size (KB) = 466940 + 0: The total amount of wall time = 125.285525 + 0: The maximum resident set size (KB) = 463504 Test 017 control_2dwrtdecomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/control_2threads +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/control_2threads Checking test 018 control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1004,14 +1004,14 @@ Checking test 018 control_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 155.804398 - 0: The maximum resident set size (KB) = 514496 + 0: The total amount of wall time = 155.653163 + 0: The maximum resident set size (KB) = 518396 Test 018 control_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/control_restart +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/control_restart Checking test 019 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1050,14 +1050,14 @@ Checking test 019 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 69.315437 - 0: The maximum resident set size (KB) = 209284 + 0: The total amount of wall time = 70.343768 + 0: The maximum resident set size (KB) = 209796 Test 019 control_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/control_fhzero +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/control_fhzero Checking test 020 control_fhzero results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -1100,14 +1100,14 @@ Checking test 020 control_fhzero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 126.640334 - 0: The maximum resident set size (KB) = 466316 + 0: The total amount of wall time = 125.283004 + 0: The maximum resident set size (KB) = 465004 Test 020 control_fhzero PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_CubedSphereGrid -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/control_CubedSphereGrid +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/control_CubedSphereGrid Checking test 021 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1134,14 +1134,14 @@ Checking test 021 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 130.927334 - 0: The maximum resident set size (KB) = 464184 + 0: The total amount of wall time = 130.547498 + 0: The maximum resident set size (KB) = 466676 Test 021 control_CubedSphereGrid PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_latlon -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/control_latlon +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/control_latlon Checking test 022 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1152,16 +1152,16 @@ Checking test 022 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 127.282210 - 0: The maximum resident set size (KB) = 466616 + 0: The total amount of wall time = 130.385826 + 0: The maximum resident set size (KB) = 470572 Test 022 control_latlon PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_wrtGauss_netcdf_parallel -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/control_wrtGauss_netcdf_parallel +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/control_wrtGauss_netcdf_parallel Checking test 023 control_wrtGauss_netcdf_parallel results .... - Comparing sfcf000.nc .........OK + Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK @@ -1170,14 +1170,14 @@ Checking test 023 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 133.413376 - 0: The maximum resident set size (KB) = 465368 + 0: The total amount of wall time = 134.195541 + 0: The maximum resident set size (KB) = 468872 Test 023 control_wrtGauss_netcdf_parallel PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_c48 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/control_c48 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/control_c48 Checking test 024 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1216,14 +1216,14 @@ Checking test 024 control_c48 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0: The total amount of wall time = 319.142332 -0: The maximum resident set size (KB) = 660572 +0: The total amount of wall time = 322.114227 +0: The maximum resident set size (KB) = 654204 Test 024 control_c48 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_c192 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/control_c192 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/control_c192 Checking test 025 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1234,14 +1234,14 @@ Checking test 025 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 485.837643 - 0: The maximum resident set size (KB) = 564268 + 0: The total amount of wall time = 489.176148 + 0: The maximum resident set size (KB) = 563584 Test 025 control_c192 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_c384 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/control_c384 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/control_c384 Checking test 026 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1252,14 +1252,14 @@ Checking test 026 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 827.392149 - 0: The maximum resident set size (KB) = 823016 + 0: The total amount of wall time = 812.221029 + 0: The maximum resident set size (KB) = 818388 Test 026 control_c384 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_c384gdas -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/control_c384gdas +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/control_c384gdas Checking test 027 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1302,14 +1302,14 @@ Checking test 027 control_c384gdas results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 701.411434 - 0: The maximum resident set size (KB) = 937900 + 0: The total amount of wall time = 696.607167 + 0: The maximum resident set size (KB) = 935940 Test 027 control_c384gdas PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_stochy -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/control_stochy +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/control_stochy Checking test 028 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1320,28 +1320,28 @@ Checking test 028 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 86.155449 - 0: The maximum resident set size (KB) = 468756 + 0: The total amount of wall time = 85.497264 + 0: The maximum resident set size (KB) = 471636 Test 028 control_stochy PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_stochy -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/control_stochy_restart +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/control_stochy_restart Checking test 029 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 49.409425 - 0: The maximum resident set size (KB) = 248748 + 0: The total amount of wall time = 48.458021 + 0: The maximum resident set size (KB) = 252652 Test 029 control_stochy_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_lndp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/control_lndp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/control_lndp Checking test 030 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1352,14 +1352,14 @@ Checking test 030 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 77.885326 - 0: The maximum resident set size (KB) = 469176 + 0: The total amount of wall time = 76.615910 + 0: The maximum resident set size (KB) = 471084 Test 030 control_lndp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_iovr4 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/control_iovr4 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/control_iovr4 Checking test 031 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1374,14 +1374,14 @@ Checking test 031 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 136.573186 - 0: The maximum resident set size (KB) = 466340 + 0: The total amount of wall time = 133.490970 + 0: The maximum resident set size (KB) = 466232 Test 031 control_iovr4 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_iovr5 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/control_iovr5 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/control_iovr5 Checking test 032 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1396,14 +1396,14 @@ Checking test 032 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 127.595946 - 0: The maximum resident set size (KB) = 473072 + 0: The total amount of wall time = 131.570533 + 0: The maximum resident set size (KB) = 467108 Test 032 control_iovr5 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/control_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/control_p8 Checking test 033 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1450,14 +1450,14 @@ Checking test 033 control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 156.980254 - 0: The maximum resident set size (KB) = 861160 + 0: The total amount of wall time = 157.862487 + 0: The maximum resident set size (KB) = 859724 Test 033 control_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/control_restart_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/control_restart_p8 Checking test 034 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1496,14 +1496,14 @@ Checking test 034 control_restart_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 83.505629 - 0: The maximum resident set size (KB) = 599012 + 0: The total amount of wall time = 84.152098 + 0: The maximum resident set size (KB) = 604716 Test 034 control_restart_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/control_decomp_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/control_decomp_p8 Checking test 035 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1546,14 +1546,14 @@ Checking test 035 control_decomp_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 158.372109 - 0: The maximum resident set size (KB) = 852108 + 0: The total amount of wall time = 163.259801 + 0: The maximum resident set size (KB) = 848520 Test 035 control_decomp_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/control_2threads_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/control_2threads_p8 Checking test 036 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1596,14 +1596,14 @@ Checking test 036 control_2threads_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 187.022695 - 0: The maximum resident set size (KB) = 932788 + 0: The total amount of wall time = 193.656720 + 0: The maximum resident set size (KB) = 932192 Test 036 control_2threads_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_p7_rrtmgp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/control_p7_rrtmgp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/control_p7_rrtmgp Checking test 037 control_p7_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1650,14 +1650,14 @@ Checking test 037 control_p7_rrtmgp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 191.879717 - 0: The maximum resident set size (KB) = 600764 + 0: The total amount of wall time = 186.237160 + 0: The maximum resident set size (KB) = 597632 Test 037 control_p7_rrtmgp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/fv3_regional_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/regional_control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/regional_control Checking test 038 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1668,42 +1668,42 @@ Checking test 038 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 315.905213 - 0: The maximum resident set size (KB) = 583304 + 0: The total amount of wall time = 313.690751 + 0: The maximum resident set size (KB) = 581992 Test 038 regional_control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/fv3_regional_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/regional_restart +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/regional_restart Checking test 039 regional_restart results .... Comparing dynf024.nc .........OK Comparing phyf024.nc .........OK Comparing PRSLEV.GrbF24 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 178.156836 - 0: The maximum resident set size (KB) = 586724 + 0: The total amount of wall time = 176.727235 + 0: The maximum resident set size (KB) = 584424 Test 039 regional_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/fv3_regional_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/regional_control_2dwrtdecomp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/regional_control_2dwrtdecomp Checking test 040 regional_control_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK - 0: The total amount of wall time = 324.412959 - 0: The maximum resident set size (KB) = 560040 + 0: The total amount of wall time = 312.466243 + 0: The maximum resident set size (KB) = 585844 Test 040 regional_control_2dwrtdecomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/fv3_regional_noquilt -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/regional_noquilt +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/regional_noquilt Checking test 041 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1711,14 +1711,14 @@ Checking test 041 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 = 319.278823 - 0: The maximum resident set size (KB) = 597888 + 0: The total amount of wall time = 317.625667 + 0: The maximum resident set size (KB) = 597188 Test 041 regional_noquilt PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/fv3_regional_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/regional_2threads +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/regional_2threads Checking test 042 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1729,14 +1729,14 @@ Checking test 042 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 238.564512 - 0: The maximum resident set size (KB) = 582960 + 0: The total amount of wall time = 236.275455 + 0: The maximum resident set size (KB) = 581996 Test 042 regional_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/fv3_regional_hafs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/regional_hafs +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/regional_hafs Checking test 043 regional_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1745,28 +1745,28 @@ Checking test 043 regional_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK - 0: The total amount of wall time = 311.223928 - 0: The maximum resident set size (KB) = 582988 + 0: The total amount of wall time = 315.404670 + 0: The maximum resident set size (KB) = 584220 Test 043 regional_hafs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/fv3_regional_netcdf_parallel -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/regional_netcdf_parallel +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/regional_netcdf_parallel Checking test 044 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf024.nc ............ALT CHECK......OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK - 0: The total amount of wall time = 311.515446 - 0: The maximum resident set size (KB) = 581568 + 0: The total amount of wall time = 311.009655 + 0: The maximum resident set size (KB) = 579188 Test 044 regional_netcdf_parallel PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/fv3_regional_RRTMGP -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/regional_RRTMGP +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/regional_RRTMGP Checking test 045 regional_RRTMGP results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1777,14 +1777,14 @@ Checking test 045 regional_RRTMGP results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 412.524753 - 0: The maximum resident set size (KB) = 704404 + 0: The total amount of wall time = 412.760322 + 0: The maximum resident set size (KB) = 708976 Test 045 regional_RRTMGP PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/fv3_regional_3km -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/regional_3km +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/regional_3km Checking test 046 regional_3km results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1795,14 +1795,14 @@ Checking test 046 regional_3km results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 257.554797 - 0: The maximum resident set size (KB) = 618012 + 0: The total amount of wall time = 246.421002 + 0: The maximum resident set size (KB) = 618480 Test 046 regional_3km PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/rap_control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/rap_control Checking test 047 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1849,14 +1849,14 @@ Checking test 047 rap_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 371.844155 - 0: The maximum resident set size (KB) = 839780 + 0: The total amount of wall time = 367.564672 + 0: The maximum resident set size (KB) = 839124 Test 047 rap_control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/regional_spp_sppt_shum_skeb -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/regional_spp_sppt_shum_skeb +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/regional_spp_sppt_shum_skeb Checking test 048 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -1867,14 +1867,14 @@ Checking test 048 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 297.369216 - 0: The maximum resident set size (KB) = 935304 + 0: The total amount of wall time = 301.914751 + 0: The maximum resident set size (KB) = 926200 Test 048 regional_spp_sppt_shum_skeb PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/rap_2threads +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/rap_2threads Checking test 049 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1921,14 +1921,14 @@ Checking test 049 rap_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 438.211730 - 0: The maximum resident set size (KB) = 915672 + 0: The total amount of wall time = 441.816432 + 0: The maximum resident set size (KB) = 910416 Test 049 rap_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/rap_restart +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/rap_restart Checking test 050 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1967,14 +1967,14 @@ Checking test 050 rap_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 188.328735 - 0: The maximum resident set size (KB) = 590132 + 0: The total amount of wall time = 186.912264 + 0: The maximum resident set size (KB) = 594856 Test 050 rap_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_sfcdiff -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/rap_sfcdiff +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/rap_sfcdiff Checking test 051 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2021,14 +2021,14 @@ Checking test 051 rap_sfcdiff results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 365.850992 - 0: The maximum resident set size (KB) = 840888 + 0: The total amount of wall time = 367.241671 + 0: The maximum resident set size (KB) = 839380 Test 051 rap_sfcdiff PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_sfcdiff -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/rap_sfcdiff_restart +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/rap_sfcdiff_restart Checking test 052 rap_sfcdiff_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2067,14 +2067,14 @@ Checking test 052 rap_sfcdiff_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 184.591235 - 0: The maximum resident set size (KB) = 595020 + 0: The total amount of wall time = 188.376894 + 0: The maximum resident set size (KB) = 596404 Test 052 rap_sfcdiff_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/hrrr_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/hrrr_control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/hrrr_control Checking test 053 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2121,14 +2121,14 @@ Checking test 053 hrrr_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 364.506305 - 0: The maximum resident set size (KB) = 838920 + 0: The total amount of wall time = 361.358883 + 0: The maximum resident set size (KB) = 835876 Test 053 hrrr_control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rrfs_v1beta -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/rrfs_v1beta +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/rrfs_v1beta Checking test 054 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2175,14 +2175,14 @@ Checking test 054 rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 361.990658 - 0: The maximum resident set size (KB) = 838832 + 0: The total amount of wall time = 360.163167 + 0: The maximum resident set size (KB) = 830592 Test 054 rrfs_v1beta PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rrfs_v1nssl -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/rrfs_v1nssl +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/rrfs_v1nssl Checking test 055 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2197,14 +2197,14 @@ Checking test 055 rrfs_v1nssl results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 438.175630 - 0: The maximum resident set size (KB) = 528336 + 0: The total amount of wall time = 445.190696 + 0: The maximum resident set size (KB) = 527448 Test 055 rrfs_v1nssl PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/rrfs_v1nssl_nohailnoccn +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/rrfs_v1nssl_nohailnoccn Checking test 056 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2219,14 +2219,14 @@ Checking test 056 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 426.289177 - 0: The maximum resident set size (KB) = 519548 + 0: The total amount of wall time = 437.098775 + 0: The maximum resident set size (KB) = 513864 Test 056 rrfs_v1nssl_nohailnoccn PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rrfs_conus13km_hrrr_warm -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/rrfs_conus13km_hrrr_warm +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/rrfs_conus13km_hrrr_warm Checking test 057 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2235,14 +2235,14 @@ Checking test 057 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 174.162736 - 0: The maximum resident set size (KB) = 671376 + 0: The total amount of wall time = 174.824304 + 0: The maximum resident set size (KB) = 671948 Test 057 rrfs_conus13km_hrrr_warm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/rrfs_conus13km_radar_tten_warm +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/rrfs_conus13km_radar_tten_warm Checking test 058 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2251,14 +2251,14 @@ Checking test 058 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 185.025463 - 0: The maximum resident set size (KB) = 678272 + 0: The total amount of wall time = 172.720409 + 0: The maximum resident set size (KB) = 674208 Test 058 rrfs_conus13km_radar_tten_warm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_rrtmgp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/control_rrtmgp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/control_rrtmgp Checking test 059 control_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2269,14 +2269,14 @@ Checking test 059 control_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 206.334950 - 0: The maximum resident set size (KB) = 594376 + 0: The total amount of wall time = 199.499585 + 0: The maximum resident set size (KB) = 596388 Test 059 control_rrtmgp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_rrtmgp_c192 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/control_rrtmgp_c192 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/control_rrtmgp_c192 Checking test 060 control_rrtmgp_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2287,14 +2287,14 @@ Checking test 060 control_rrtmgp_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 533.788539 - 0: The maximum resident set size (KB) = 797836 + 0: The total amount of wall time = 534.795484 + 0: The maximum resident set size (KB) = 800468 Test 060 control_rrtmgp_c192 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_csawmg -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/control_csawmg +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/control_csawmg Checking test 061 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2305,14 +2305,14 @@ Checking test 061 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 319.297102 - 0: The maximum resident set size (KB) = 540672 + 0: The total amount of wall time = 317.484022 + 0: The maximum resident set size (KB) = 544244 Test 061 control_csawmg PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_csawmgt -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/control_csawmgt +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/control_csawmgt Checking test 062 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2323,14 +2323,14 @@ Checking test 062 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 322.503546 - 0: The maximum resident set size (KB) = 540452 + 0: The total amount of wall time = 318.845817 + 0: The maximum resident set size (KB) = 541396 Test 062 control_csawmgt PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_flake -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/control_flake +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/control_flake Checking test 063 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2341,14 +2341,14 @@ Checking test 063 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 235.648888 - 0: The maximum resident set size (KB) = 544100 + 0: The total amount of wall time = 235.232263 + 0: The maximum resident set size (KB) = 511680 Test 063 control_flake PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_ras -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/control_ras +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/control_ras Checking test 064 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2359,14 +2359,14 @@ Checking test 064 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 171.728444 - 0: The maximum resident set size (KB) = 506168 + 0: The total amount of wall time = 178.919488 + 0: The maximum resident set size (KB) = 504412 Test 064 control_ras PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_thompson -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/control_thompson +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/control_thompson Checking test 065 control_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2377,14 +2377,14 @@ Checking test 065 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 221.140967 - 0: The maximum resident set size (KB) = 861828 + 0: The total amount of wall time = 222.354296 + 0: The maximum resident set size (KB) = 859884 Test 065 control_thompson PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_thompson_no_aero -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/control_thompson_no_aero +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/control_thompson_no_aero Checking test 066 control_thompson_no_aero results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2395,54 +2395,54 @@ Checking test 066 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 210.152010 - 0: The maximum resident set size (KB) = 854772 + 0: The total amount of wall time = 207.738272 + 0: The maximum resident set size (KB) = 850992 Test 066 control_thompson_no_aero PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_wam_repro -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/control_wam_repro +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/control_wam_repro Checking test 067 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 118.514961 - 0: The maximum resident set size (KB) = 232356 + 0: The total amount of wall time = 122.588653 + 0: The maximum resident set size (KB) = 233748 Test 067 control_wam PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/control_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/control_debug Checking test 068 control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 156.116479 - 0: The maximum resident set size (KB) = 638716 + 0: The total amount of wall time = 155.010889 + 0: The maximum resident set size (KB) = 633796 Test 068 control_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/control_2threads_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/control_2threads_debug Checking test 069 control_2threads_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 229.426455 - 0: The maximum resident set size (KB) = 682752 + 0: The total amount of wall time = 254.351368 + 0: The maximum resident set size (KB) = 681920 Test 069 control_2threads_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_CubedSphereGrid_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/control_CubedSphereGrid_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/control_CubedSphereGrid_debug Checking test 070 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2469,428 +2469,428 @@ Checking test 070 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 169.044454 - 0: The maximum resident set size (KB) = 636984 + 0: The total amount of wall time = 168.058352 + 0: The maximum resident set size (KB) = 631472 Test 070 control_CubedSphereGrid_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/control_wrtGauss_netcdf_parallel_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/control_wrtGauss_netcdf_parallel_debug Checking test 071 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 156.239348 - 0: The maximum resident set size (KB) = 631096 + 0: The total amount of wall time = 155.900969 + 0: The maximum resident set size (KB) = 632304 Test 071 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_stochy_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/control_stochy_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/control_stochy_debug Checking test 072 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 174.046455 - 0: The maximum resident set size (KB) = 635552 + 0: The total amount of wall time = 179.827679 + 0: The maximum resident set size (KB) = 639012 Test 072 control_stochy_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_lndp_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/control_lndp_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/control_lndp_debug Checking test 073 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 = 155.888796 - 0: The maximum resident set size (KB) = 635528 + 0: The total amount of wall time = 155.407210 + 0: The maximum resident set size (KB) = 640248 Test 073 control_lndp_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_rrtmgp_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/control_rrtmgp_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/control_rrtmgp_debug Checking test 074 control_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 168.966161 - 0: The maximum resident set size (KB) = 736112 + 0: The total amount of wall time = 166.611419 + 0: The maximum resident set size (KB) = 734904 Test 074 control_rrtmgp_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_csawmg_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/control_csawmg_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/control_csawmg_debug Checking test 075 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 = 235.359567 - 0: The maximum resident set size (KB) = 678176 + 0: The total amount of wall time = 240.836790 + 0: The maximum resident set size (KB) = 674896 Test 075 control_csawmg_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_csawmgt_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/control_csawmgt_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/control_csawmgt_debug Checking test 076 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 = 241.896988 - 0: The maximum resident set size (KB) = 678132 + 0: The total amount of wall time = 231.317228 + 0: The maximum resident set size (KB) = 682208 Test 076 control_csawmgt_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_ras_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/control_ras_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/control_ras_debug Checking test 077 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 157.516750 - 0: The maximum resident set size (KB) = 644324 + 0: The total amount of wall time = 163.534929 + 0: The maximum resident set size (KB) = 645216 Test 077 control_ras_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_diag_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/control_diag_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/control_diag_debug Checking test 078 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 = 167.497704 - 0: The maximum resident set size (KB) = 687392 + 0: The total amount of wall time = 163.796418 + 0: The maximum resident set size (KB) = 688700 Test 078 control_diag_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_debug_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/control_debug_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/control_debug_p8 Checking test 079 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 = 170.777135 - 0: The maximum resident set size (KB) = 1028216 + 0: The total amount of wall time = 169.224369 + 0: The maximum resident set size (KB) = 1025844 Test 079 control_debug_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_thompson_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/control_thompson_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/control_thompson_debug Checking test 080 control_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 183.090198 - 0: The maximum resident set size (KB) = 1001416 + 0: The total amount of wall time = 179.827974 + 0: The maximum resident set size (KB) = 996256 Test 080 control_thompson_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_thompson_no_aero_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/control_thompson_no_aero_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/control_thompson_no_aero_debug Checking test 081 control_thompson_no_aero_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 183.140184 - 0: The maximum resident set size (KB) = 992612 + 0: The total amount of wall time = 175.100436 + 0: The maximum resident set size (KB) = 993276 Test 081 control_thompson_no_aero_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_thompson_debug_extdiag -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/control_thompson_extdiag_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/control_thompson_extdiag_debug Checking test 082 control_thompson_extdiag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 188.749918 - 0: The maximum resident set size (KB) = 1028600 + 0: The total amount of wall time = 190.487842 + 0: The maximum resident set size (KB) = 1025840 Test 082 control_thompson_extdiag_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_thompson_progcld_thompson_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/control_thompson_progcld_thompson_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/control_thompson_progcld_thompson_debug Checking test 083 control_thompson_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 178.725327 - 0: The maximum resident set size (KB) = 994248 + 0: The total amount of wall time = 182.836680 + 0: The maximum resident set size (KB) = 999532 Test 083 control_thompson_progcld_thompson_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/fv3_regional_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/regional_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/regional_debug Checking test 084 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 = 248.056681 - 0: The maximum resident set size (KB) = 608908 + 0: The total amount of wall time = 247.463219 + 0: The maximum resident set size (KB) = 608968 Test 084 regional_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_control_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/rap_control_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/rap_control_debug Checking test 085 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 = 279.691362 - 0: The maximum resident set size (KB) = 1000676 + 0: The total amount of wall time = 272.943728 + 0: The maximum resident set size (KB) = 1003912 Test 085 rap_control_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_control_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/rap_unified_drag_suite_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/rap_unified_drag_suite_debug Checking test 086 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 = 277.930207 - 0: The maximum resident set size (KB) = 1002040 + 0: The total amount of wall time = 269.585025 + 0: The maximum resident set size (KB) = 1002672 Test 086 rap_unified_drag_suite_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_diag_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/rap_diag_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/rap_diag_debug Checking test 087 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 = 293.330211 - 0: The maximum resident set size (KB) = 1083372 + 0: The total amount of wall time = 285.750626 + 0: The maximum resident set size (KB) = 1088092 Test 087 rap_diag_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_cires_ugwp_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/rap_cires_ugwp_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/rap_cires_ugwp_debug Checking test 088 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 = 288.692897 - 0: The maximum resident set size (KB) = 1006432 + 0: The total amount of wall time = 278.893909 + 0: The maximum resident set size (KB) = 1003592 Test 088 rap_cires_ugwp_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_cires_ugwp_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/rap_unified_ugwp_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/rap_unified_ugwp_debug Checking test 089 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 = 276.977409 - 0: The maximum resident set size (KB) = 1002160 + 0: The total amount of wall time = 279.957161 + 0: The maximum resident set size (KB) = 976232 Test 089 rap_unified_ugwp_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_lndp_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/rap_lndp_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/rap_lndp_debug Checking test 090 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.954330 - 0: The maximum resident set size (KB) = 1005052 + 0: The total amount of wall time = 283.785278 + 0: The maximum resident set size (KB) = 1004264 Test 090 rap_lndp_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_flake_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/rap_flake_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/rap_flake_debug Checking test 091 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 = 281.282602 - 0: The maximum resident set size (KB) = 1001972 + 0: The total amount of wall time = 272.163840 + 0: The maximum resident set size (KB) = 1002284 Test 091 rap_flake_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_progcld_thompson_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/rap_progcld_thompson_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/rap_progcld_thompson_debug Checking test 092 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 = 280.380023 - 0: The maximum resident set size (KB) = 1006072 + 0: The total amount of wall time = 276.898695 + 0: The maximum resident set size (KB) = 1003748 Test 092 rap_progcld_thompson_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_noah_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/rap_noah_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/rap_noah_debug Checking test 093 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 = 269.852806 - 0: The maximum resident set size (KB) = 1004936 + 0: The total amount of wall time = 268.309879 + 0: The maximum resident set size (KB) = 1005752 Test 093 rap_noah_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_rrtmgp_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/rap_rrtmgp_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/rap_rrtmgp_debug Checking test 094 rap_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 458.163743 - 0: The maximum resident set size (KB) = 1108736 + 0: The total amount of wall time = 458.220479 + 0: The maximum resident set size (KB) = 1113636 Test 094 rap_rrtmgp_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_sfcdiff_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/rap_sfcdiff_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/rap_sfcdiff_debug Checking test 095 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 = 271.582363 - 0: The maximum resident set size (KB) = 1004716 + 0: The total amount of wall time = 280.826913 + 0: The maximum resident set size (KB) = 1004540 Test 095 rap_sfcdiff_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/rap_noah_sfcdiff_cires_ugwp_debug Checking test 096 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 = 452.068458 - 0: The maximum resident set size (KB) = 1003816 + 0: The total amount of wall time = 455.326610 + 0: The maximum resident set size (KB) = 1006992 Test 096 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/rrfs_v1beta_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/rrfs_v1beta_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/rrfs_v1beta_debug Checking test 097 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 280.732490 - 0: The maximum resident set size (KB) = 1000420 + 0: The total amount of wall time = 268.050055 + 0: The maximum resident set size (KB) = 1001228 Test 097 rrfs_v1beta_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_wam_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/control_wam_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/control_wam_debug Checking test 098 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 300.815017 - 0: The maximum resident set size (KB) = 256108 + 0: The total amount of wall time = 283.311459 + 0: The maximum resident set size (KB) = 258180 Test 098 control_wam_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/hafs_regional_atm -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/hafs_regional_atm +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/hafs_regional_atm Checking test 099 hafs_regional_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc .........OK + Comparing atmf006.nc .........OK + Comparing sfcf006.nc ............ALT CHECK......OK - 0: The total amount of wall time = 263.482686 - 0: The maximum resident set size (KB) = 714100 + 0: The total amount of wall time = 261.303892 + 0: The maximum resident set size (KB) = 706048 Test 099 hafs_regional_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/hafs_regional_atm_thompson_gfdlsf +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/hafs_regional_atm_thompson_gfdlsf Checking test 100 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 329.220261 - 0: The maximum resident set size (KB) = 1075240 + 0: The total amount of wall time = 317.240204 + 0: The maximum resident set size (KB) = 1070984 Test 100 hafs_regional_atm_thompson_gfdlsf PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/hafs_regional_atm_ocn -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/hafs_regional_atm_ocn +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/hafs_regional_atm_ocn Checking test 101 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -2899,28 +2899,28 @@ Checking test 101 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 = 348.300954 - 0: The maximum resident set size (KB) = 732472 + 0: The total amount of wall time = 348.616344 + 0: The maximum resident set size (KB) = 728184 Test 101 hafs_regional_atm_ocn PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/hafs_regional_atm_wav -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/hafs_regional_atm_wav +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/hafs_regional_atm_wav Checking test 102 hafs_regional_atm_wav results .... - Comparing atmf006.nc .........OK + Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc .........OK Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 819.343746 - 0: The maximum resident set size (KB) = 726488 + 0: The total amount of wall time = 821.436933 + 0: The maximum resident set size (KB) = 732480 Test 102 hafs_regional_atm_wav PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/hafs_regional_atm_ocn_wav -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/hafs_regional_atm_ocn_wav +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/hafs_regional_atm_ocn_wav Checking test 103 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc .........OK @@ -2929,28 +2929,28 @@ Checking test 103 hafs_regional_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 895.376522 - 0: The maximum resident set size (KB) = 729652 + 0: The total amount of wall time = 894.947615 + 0: The maximum resident set size (KB) = 729240 Test 103 hafs_regional_atm_ocn_wav PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/hafs_regional_1nest_atm -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/hafs_regional_1nest_atm +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/hafs_regional_1nest_atm Checking test 104 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 + Comparing sfc.nest02.f006.nc ............ALT CHECK......OK - 0: The total amount of wall time = 417.693559 - 0: The maximum resident set size (KB) = 315852 + 0: The total amount of wall time = 415.156258 + 0: The maximum resident set size (KB) = 313232 Test 104 hafs_regional_1nest_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/hafs_regional_telescopic_2nests_atm +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/hafs_regional_telescopic_2nests_atm Checking test 105 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -2959,28 +2959,28 @@ Checking test 105 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 = 434.808650 - 0: The maximum resident set size (KB) = 329268 + 0: The total amount of wall time = 426.948212 + 0: The maximum resident set size (KB) = 327044 -Test 105 hafs_regional_telescopic_2nests_atm PASS +Test 105 hafs_regional_telescopic_2nests_atm PASS Tries: 2 baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/hafs_global_1nest_atm -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/hafs_global_1nest_atm +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/hafs_global_1nest_atm Checking test 106 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 = 196.925229 - 0: The maximum resident set size (KB) = 203064 + 0: The total amount of wall time = 193.196910 + 0: The maximum resident set size (KB) = 205252 Test 106 hafs_global_1nest_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/hafs_global_multiple_4nests_atm -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/hafs_global_multiple_4nests_atm +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/hafs_global_multiple_4nests_atm Checking test 107 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -2993,14 +2993,14 @@ Checking test 107 hafs_global_multiple_4nests_atm results .... Comparing atm.nest05.f006.nc .........OK Comparing sfc.nest05.f006.nc ............ALT CHECK......OK - 0: The total amount of wall time = 535.027903 - 0: The maximum resident set size (KB) = 277644 + 0: The total amount of wall time = 525.510481 + 0: The maximum resident set size (KB) = 251476 Test 107 hafs_global_multiple_4nests_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/hafs_regional_docn -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/hafs_regional_docn +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/hafs_regional_docn Checking test 108 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3008,14 +3008,14 @@ Checking test 108 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 = 339.768082 - 0: The maximum resident set size (KB) = 727628 + 0: The total amount of wall time = 343.523073 + 0: The maximum resident set size (KB) = 724556 Test 108 hafs_regional_docn PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/hafs_regional_docn_oisst -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/hafs_regional_docn_oisst +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/hafs_regional_docn_oisst Checking test 109 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3023,118 +3023,118 @@ Checking test 109 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 = 343.414970 - 0: The maximum resident set size (KB) = 729764 + 0: The total amount of wall time = 340.154662 + 0: The maximum resident set size (KB) = 722840 Test 109 hafs_regional_docn_oisst PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/hafs_regional_datm_cdeps -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/hafs_regional_datm_cdeps +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/hafs_regional_datm_cdeps Checking test 110 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 = 916.562665 - 0: The maximum resident set size (KB) = 853232 + 0: The total amount of wall time = 931.325047 + 0: The maximum resident set size (KB) = 854780 Test 110 hafs_regional_datm_cdeps PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/datm_cdeps_control_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/datm_cdeps_control_cfsr Checking test 111 datm_cdeps_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 143.756375 - 0: The maximum resident set size (KB) = 721428 + 0: The total amount of wall time = 143.295710 + 0: The maximum resident set size (KB) = 717956 Test 111 datm_cdeps_control_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/datm_cdeps_restart_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/datm_cdeps_restart_cfsr Checking test 112 datm_cdeps_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 103.425738 - 0: The maximum resident set size (KB) = 721760 + 0: The total amount of wall time = 97.591358 + 0: The maximum resident set size (KB) = 719164 Test 112 datm_cdeps_restart_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_control_gefs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/datm_cdeps_control_gefs +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/datm_cdeps_control_gefs Checking test 113 datm_cdeps_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 138.916055 - 0: The maximum resident set size (KB) = 621272 + 0: The total amount of wall time = 139.936785 + 0: The maximum resident set size (KB) = 620844 Test 113 datm_cdeps_control_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_iau_gefs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/datm_cdeps_iau_gefs +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/datm_cdeps_iau_gefs Checking test 114 datm_cdeps_iau_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 139.789740 - 0: The maximum resident set size (KB) = 621216 + 0: The total amount of wall time = 143.813290 + 0: The maximum resident set size (KB) = 619088 Test 114 datm_cdeps_iau_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_stochy_gefs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/datm_cdeps_stochy_gefs +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/datm_cdeps_stochy_gefs Checking test 115 datm_cdeps_stochy_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 139.684415 - 0: The maximum resident set size (KB) = 619152 + 0: The total amount of wall time = 143.626202 + 0: The maximum resident set size (KB) = 621068 Test 115 datm_cdeps_stochy_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_bulk_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/datm_cdeps_bulk_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/datm_cdeps_bulk_cfsr Checking test 116 datm_cdeps_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 142.200140 - 0: The maximum resident set size (KB) = 718732 + 0: The total amount of wall time = 141.731578 + 0: The maximum resident set size (KB) = 718588 Test 116 datm_cdeps_bulk_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_bulk_gefs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/datm_cdeps_bulk_gefs +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/datm_cdeps_bulk_gefs Checking test 117 datm_cdeps_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 139.303764 - 0: The maximum resident set size (KB) = 620852 + 0: The total amount of wall time = 141.251819 + 0: The maximum resident set size (KB) = 622880 Test 117 datm_cdeps_bulk_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_mx025_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/datm_cdeps_mx025_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/datm_cdeps_mx025_cfsr Checking test 118 datm_cdeps_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -3143,14 +3143,14 @@ Checking test 118 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 = 300.466818 - 0: The maximum resident set size (KB) = 568056 + 0: The total amount of wall time = 298.477493 + 0: The maximum resident set size (KB) = 566888 Test 118 datm_cdeps_mx025_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_mx025_gefs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/datm_cdeps_mx025_gefs +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/datm_cdeps_mx025_gefs Checking test 119 datm_cdeps_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -3159,64 +3159,64 @@ Checking test 119 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 294.493760 - 0: The maximum resident set size (KB) = 533216 + 0: The total amount of wall time = 293.774090 + 0: The maximum resident set size (KB) = 538200 Test 119 datm_cdeps_mx025_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/datm_cdeps_multiple_files_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/datm_cdeps_multiple_files_cfsr Checking test 120 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 = 139.911398 - 0: The maximum resident set size (KB) = 717696 + 0: The total amount of wall time = 144.202324 + 0: The maximum resident set size (KB) = 722736 Test 120 datm_cdeps_multiple_files_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/datm_cdeps_3072x1536_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/datm_cdeps_3072x1536_cfsr Checking test 121 datm_cdeps_3072x1536_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 191.261723 - 0: The maximum resident set size (KB) = 1832112 + 0: The total amount of wall time = 190.751008 + 0: The maximum resident set size (KB) = 1836772 Test 121 datm_cdeps_3072x1536_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_gfs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/datm_cdeps_gfs +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/datm_cdeps_gfs Checking test 122 datm_cdeps_gfs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 190.598597 - 0: The maximum resident set size (KB) = 1842564 + 0: The total amount of wall time = 189.372771 + 0: The maximum resident set size (KB) = 1830596 Test 122 datm_cdeps_gfs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/datm_cdeps_debug_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/datm_cdeps_debug_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/datm_cdeps_debug_cfsr Checking test 123 datm_cdeps_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 447.034891 - 0: The maximum resident set size (KB) = 723040 + 0: The total amount of wall time = 443.942016 + 0: The maximum resident set size (KB) = 728736 Test 123 datm_cdeps_debug_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_atmwav -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/control_atmwav +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/control_atmwav Checking test 124 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -3260,14 +3260,14 @@ Checking test 124 control_atmwav results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 81.584737 - 0: The maximum resident set size (KB) = 495384 + 0: The total amount of wall time = 83.936486 + 0: The maximum resident set size (KB) = 498276 Test 124 control_atmwav PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/INTEL/control_c384gdas_wav -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196141/control_c384gdas_wav +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_243734/control_c384gdas_wav Checking test 125 control_c384gdas_wav results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -3313,12 +3313,12 @@ Checking test 125 control_c384gdas_wav results .... Comparing 20210322.030000.restart.gnh_10m .........OK Comparing 20210322.030000.restart.gsh_15m .........OK - 0: The total amount of wall time = 694.868977 - 0: The maximum resident set size (KB) = 1017900 + 0: The total amount of wall time = 683.051189 + 0: The maximum resident set size (KB) = 1020916 Test 125 control_c384gdas_wav PASS REGRESSION TEST WAS SUCCESSFUL -Fri Apr 1 16:03:05 CDT 2022 -Elapsed time: 01h:11m:00s. Have a nice day! +Mon Apr 4 11:35:23 CDT 2022 +Elapsed time: 01h:03m:31s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_cray.log b/tests/RegressionTests_wcoss_cray.log index dbdf11f866..6cca786e04 100644 --- a/tests/RegressionTests_wcoss_cray.log +++ b/tests/RegressionTests_wcoss_cray.log @@ -1,18 +1,18 @@ -Fri Apr 1 18:53:40 UTC 2022 +Mon Apr 4 15:35:30 UTC 2022 Start Regression test -Compile 001 elapsed time 689 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP,FV3_GFS_v16_p7_rrtmgp,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 002 elapsed time 744 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 003 elapsed time 729 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 004 elapsed time 666 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DREPRO=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -Compile 005 elapsed time 526 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp,FV3_GFS_v16_thompson,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 006 elapsed time 483 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP,FV3_RAP_cires_ugwp,FV3_RAP_unified_ugwp,FV3_RAP_flake -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 007 elapsed time 492 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP_noah,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 479 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 813 seconds. -DAPP=HAFSW -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 001 elapsed time 688 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP,FV3_GFS_v16_p7_rrtmgp,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 002 elapsed time 736 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 003 elapsed time 734 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 004 elapsed time 654 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DREPRO=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit +Compile 005 elapsed time 525 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp,FV3_GFS_v16_thompson,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 006 elapsed time 499 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP,FV3_RAP_cires_ugwp,FV3_RAP_unified_ugwp,FV3_RAP_flake -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 007 elapsed time 502 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP_noah,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 480 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 795 seconds. -DAPP=HAFSW -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_28201/control +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/control Checking test 001 control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -59,14 +59,14 @@ Checking test 001 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 142.485651 -The maximum resident set size (KB) = 420056 +The total amount of wall time = 142.558875 +The maximum resident set size (KB) = 420996 Test 001 control PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_28201/control_decomp +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/control_decomp Checking test 002 control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -109,28 +109,28 @@ Checking test 002 control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 146.880174 -The maximum resident set size (KB) = 417816 +The total amount of wall time = 147.609364 +The maximum resident set size (KB) = 417632 Test 002 control_decomp PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_28201/control_2dwrtdecomp +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/control_2dwrtdecomp Checking test 003 control_2dwrtdecomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 139.039650 -The maximum resident set size (KB) = 419888 +The total amount of wall time = 137.104697 +The maximum resident set size (KB) = 420968 Test 003 control_2dwrtdecomp PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_28201/control_restart +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/control_restart Checking test 004 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -169,14 +169,14 @@ Checking test 004 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 78.515480 -The maximum resident set size (KB) = 156256 +The total amount of wall time = 79.105491 +The maximum resident set size (KB) = 156080 Test 004 control_restart PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_28201/control_fhzero +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/control_fhzero Checking test 005 control_fhzero results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -219,14 +219,14 @@ Checking test 005 control_fhzero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 136.755638 -The maximum resident set size (KB) = 419940 +The total amount of wall time = 135.368708 +The maximum resident set size (KB) = 420932 Test 005 control_fhzero PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_CubedSphereGrid -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_28201/control_CubedSphereGrid +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/control_CubedSphereGrid Checking test 006 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -253,14 +253,14 @@ Checking test 006 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 138.891291 -The maximum resident set size (KB) = 420184 +The total amount of wall time = 136.848105 +The maximum resident set size (KB) = 421048 Test 006 control_CubedSphereGrid PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_latlon -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_28201/control_latlon +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/control_latlon Checking test 007 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -271,14 +271,14 @@ Checking test 007 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 140.898496 -The maximum resident set size (KB) = 420084 +The total amount of wall time = 142.722591 +The maximum resident set size (KB) = 420928 Test 007 control_latlon PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_wrtGauss_netcdf_parallel -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_28201/control_wrtGauss_netcdf_parallel +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/control_wrtGauss_netcdf_parallel Checking test 008 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -289,14 +289,14 @@ Checking test 008 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 142.372238 -The maximum resident set size (KB) = 419936 +The total amount of wall time = 141.412422 +The maximum resident set size (KB) = 420920 Test 008 control_wrtGauss_netcdf_parallel PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_c48 -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_28201/control_c48 +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/control_c48 Checking test 009 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -335,14 +335,14 @@ Checking test 009 control_c48 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 451.859699 -The maximum resident set size (KB) = 623440 +The total amount of wall time = 452.668003 +The maximum resident set size (KB) = 622020 Test 009 control_c48 PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_c192 -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_28201/control_c192 +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/control_c192 Checking test 010 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -353,14 +353,14 @@ Checking test 010 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 550.421024 -The maximum resident set size (KB) = 519328 +The total amount of wall time = 550.104783 +The maximum resident set size (KB) = 518560 Test 010 control_c192 PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_stochy -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_28201/control_stochy +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/control_stochy Checking test 011 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -371,28 +371,28 @@ Checking test 011 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 96.157607 -The maximum resident set size (KB) = 420548 +The total amount of wall time = 96.140225 +The maximum resident set size (KB) = 423324 Test 011 control_stochy PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_stochy -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_28201/control_stochy_restart +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/control_stochy_restart Checking test 012 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 56.324611 -The maximum resident set size (KB) = 173600 +The total amount of wall time = 55.642405 +The maximum resident set size (KB) = 173380 Test 012 control_stochy_restart PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_lndp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_28201/control_lndp +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/control_lndp Checking test 013 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -403,14 +403,14 @@ Checking test 013 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 87.951361 -The maximum resident set size (KB) = 424868 +The total amount of wall time = 87.411010 +The maximum resident set size (KB) = 424628 Test 013 control_lndp PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_iovr4 -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_28201/control_iovr4 +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/control_iovr4 Checking test 014 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -425,14 +425,14 @@ Checking test 014 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 142.864911 -The maximum resident set size (KB) = 419924 +The total amount of wall time = 142.908523 +The maximum resident set size (KB) = 420928 Test 014 control_iovr4 PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_iovr5 -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_28201/control_iovr5 +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/control_iovr5 Checking test 015 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -447,14 +447,14 @@ Checking test 015 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 152.571983 -The maximum resident set size (KB) = 419996 +The total amount of wall time = 143.206194 +The maximum resident set size (KB) = 420920 Test 015 control_iovr5 PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_p8 -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_28201/control_p8 +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/control_p8 Checking test 016 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -501,14 +501,14 @@ Checking test 016 control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 173.890642 -The maximum resident set size (KB) = 807848 +The total amount of wall time = 174.086832 +The maximum resident set size (KB) = 807540 Test 016 control_p8 PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_p8 -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_28201/control_restart_p8 +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/control_restart_p8 Checking test 017 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -547,14 +547,14 @@ Checking test 017 control_restart_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 98.192150 -The maximum resident set size (KB) = 544940 +The total amount of wall time = 97.591827 +The maximum resident set size (KB) = 543972 Test 017 control_restart_p8 PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_p8 -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_28201/control_decomp_p8 +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/control_decomp_p8 Checking test 018 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -597,14 +597,14 @@ Checking test 018 control_decomp_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 176.888384 -The maximum resident set size (KB) = 801388 +The total amount of wall time = 178.597747 +The maximum resident set size (KB) = 801976 Test 018 control_decomp_p8 PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_p7_rrtmgp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_28201/control_p7_rrtmgp +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/control_p7_rrtmgp Checking test 019 control_p7_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -651,14 +651,14 @@ Checking test 019 control_p7_rrtmgp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 211.276616 -The maximum resident set size (KB) = 552772 +The total amount of wall time = 215.066828 +The maximum resident set size (KB) = 550556 Test 019 control_p7_rrtmgp PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/fv3_regional_control -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_28201/regional_control +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/regional_control Checking test 020 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -669,42 +669,42 @@ Checking test 020 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -The total amount of wall time = 353.343174 -The maximum resident set size (KB) = 531816 +The total amount of wall time = 355.230518 +The maximum resident set size (KB) = 532000 Test 020 regional_control PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/fv3_regional_control -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_28201/regional_restart +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/regional_restart Checking test 021 regional_restart results .... Comparing dynf024.nc .........OK Comparing phyf024.nc .........OK Comparing PRSLEV.GrbF24 .........OK Comparing NATLEV.GrbF24 .........OK -The total amount of wall time = 212.462324 -The maximum resident set size (KB) = 528464 +The total amount of wall time = 211.163632 +The maximum resident set size (KB) = 526564 Test 021 regional_restart PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/fv3_regional_control -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_28201/regional_control_2dwrtdecomp +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/regional_control_2dwrtdecomp Checking test 022 regional_control_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK -The total amount of wall time = 354.360462 -The maximum resident set size (KB) = 531804 +The total amount of wall time = 356.002948 +The maximum resident set size (KB) = 531820 Test 022 regional_control_2dwrtdecomp PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/fv3_regional_noquilt -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_28201/regional_noquilt +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/regional_noquilt Checking test 023 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -712,14 +712,14 @@ Checking test 023 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 388.508136 -The maximum resident set size (KB) = 533604 +The total amount of wall time = 386.243090 +The maximum resident set size (KB) = 533852 Test 023 regional_noquilt PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/fv3_regional_hafs -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_28201/regional_hafs +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/regional_hafs Checking test 024 regional_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -728,28 +728,28 @@ Checking test 024 regional_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK -The total amount of wall time = 350.602550 -The maximum resident set size (KB) = 527032 +The total amount of wall time = 349.524239 +The maximum resident set size (KB) = 525940 Test 024 regional_hafs PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/fv3_regional_netcdf_parallel -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_28201/regional_netcdf_parallel +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/regional_netcdf_parallel Checking test 025 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK -The total amount of wall time = 350.633120 -The maximum resident set size (KB) = 525396 +The total amount of wall time = 350.150760 +The maximum resident set size (KB) = 525300 Test 025 regional_netcdf_parallel PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/fv3_regional_RRTMGP -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_28201/regional_RRTMGP +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/regional_RRTMGP Checking test 026 regional_RRTMGP results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -760,14 +760,14 @@ Checking test 026 regional_RRTMGP results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -The total amount of wall time = 468.702885 -The maximum resident set size (KB) = 650560 +The total amount of wall time = 469.416836 +The maximum resident set size (KB) = 652156 Test 026 regional_RRTMGP PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/fv3_regional_3km -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_28201/regional_3km +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/regional_3km Checking test 027 regional_3km results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -778,14 +778,14 @@ Checking test 027 regional_3km results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 294.394581 -The maximum resident set size (KB) = 559944 +The total amount of wall time = 288.426749 +The maximum resident set size (KB) = 555584 Test 027 regional_3km PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/rap_control -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_28201/rap_control +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/rap_control Checking test 028 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -832,14 +832,14 @@ Checking test 028 rap_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 393.397892 -The maximum resident set size (KB) = 785124 +The total amount of wall time = 391.219821 +The maximum resident set size (KB) = 785904 Test 028 rap_control PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/regional_spp_sppt_shum_skeb -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_28201/regional_spp_sppt_shum_skeb +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/regional_spp_sppt_shum_skeb Checking test 029 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -850,14 +850,14 @@ Checking test 029 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 330.255644 -The maximum resident set size (KB) = 853684 +The total amount of wall time = 319.065156 +The maximum resident set size (KB) = 854212 Test 029 regional_spp_sppt_shum_skeb PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/rap_control -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_28201/rap_restart +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/rap_restart Checking test 030 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -896,14 +896,14 @@ Checking test 030 rap_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 204.792267 -The maximum resident set size (KB) = 528740 +The total amount of wall time = 202.519772 +The maximum resident set size (KB) = 529452 Test 030 rap_restart PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/rap_sfcdiff -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_28201/rap_sfcdiff +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/rap_sfcdiff Checking test 031 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -950,14 +950,14 @@ Checking test 031 rap_sfcdiff results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 394.576711 -The maximum resident set size (KB) = 785220 +The total amount of wall time = 388.017754 +The maximum resident set size (KB) = 785952 Test 031 rap_sfcdiff PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/rap_sfcdiff -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_28201/rap_sfcdiff_restart +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/rap_sfcdiff_restart Checking test 032 rap_sfcdiff_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -996,14 +996,14 @@ Checking test 032 rap_sfcdiff_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 202.943869 -The maximum resident set size (KB) = 529220 +The total amount of wall time = 203.240220 +The maximum resident set size (KB) = 530468 Test 032 rap_sfcdiff_restart PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/hrrr_control -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_28201/hrrr_control +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/hrrr_control Checking test 033 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1050,14 +1050,14 @@ Checking test 033 hrrr_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 379.041130 -The maximum resident set size (KB) = 782948 +The total amount of wall time = 375.567399 +The maximum resident set size (KB) = 783412 Test 033 hrrr_control PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/rrfs_v1beta -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_28201/rrfs_v1beta +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/rrfs_v1beta Checking test 034 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1104,14 +1104,14 @@ Checking test 034 rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 382.667063 -The maximum resident set size (KB) = 782948 +The total amount of wall time = 382.729617 +The maximum resident set size (KB) = 782936 Test 034 rrfs_v1beta PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/rrfs_v1nssl -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_28201/rrfs_v1nssl +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/rrfs_v1nssl Checking test 035 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1126,14 +1126,14 @@ Checking test 035 rrfs_v1nssl results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 480.402898 -The maximum resident set size (KB) = 472992 +The total amount of wall time = 480.419641 +The maximum resident set size (KB) = 472304 Test 035 rrfs_v1nssl PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/rrfs_v1nssl_nohailnoccn -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_28201/rrfs_v1nssl_nohailnoccn +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/rrfs_v1nssl_nohailnoccn Checking test 036 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1148,14 +1148,14 @@ Checking test 036 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 466.430964 -The maximum resident set size (KB) = 466108 +The total amount of wall time = 465.245528 +The maximum resident set size (KB) = 465980 Test 036 rrfs_v1nssl_nohailnoccn PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/rrfs_conus13km_hrrr_warm -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_28201/rrfs_conus13km_hrrr_warm +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/rrfs_conus13km_hrrr_warm Checking test 037 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -1164,14 +1164,14 @@ Checking test 037 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 245.062486 -The maximum resident set size (KB) = 598048 +The total amount of wall time = 237.974324 +The maximum resident set size (KB) = 598560 Test 037 rrfs_conus13km_hrrr_warm PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/rrfs_conus13km_radar_tten_warm -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_28201/rrfs_conus13km_radar_tten_warm +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/rrfs_conus13km_radar_tten_warm Checking test 038 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -1180,14 +1180,14 @@ Checking test 038 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 256.503327 -The maximum resident set size (KB) = 600452 +The total amount of wall time = 253.406003 +The maximum resident set size (KB) = 601624 Test 038 rrfs_conus13km_radar_tten_warm PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_rrtmgp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_28201/control_rrtmgp +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/control_rrtmgp Checking test 039 control_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1198,14 +1198,14 @@ Checking test 039 control_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 226.888997 -The maximum resident set size (KB) = 545652 +The total amount of wall time = 227.928946 +The maximum resident set size (KB) = 545756 Test 039 control_rrtmgp PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_rrtmgp_c192 -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_28201/control_rrtmgp_c192 +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/control_rrtmgp_c192 Checking test 040 control_rrtmgp_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1216,14 +1216,14 @@ Checking test 040 control_rrtmgp_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 615.193336 -The maximum resident set size (KB) = 746856 +The total amount of wall time = 610.733750 +The maximum resident set size (KB) = 746972 Test 040 control_rrtmgp_c192 PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_csawmg -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_28201/control_csawmg +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/control_csawmg Checking test 041 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1234,14 +1234,14 @@ Checking test 041 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 361.155868 -The maximum resident set size (KB) = 487700 +The total amount of wall time = 360.277068 +The maximum resident set size (KB) = 487100 Test 041 control_csawmg PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_csawmgt -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_28201/control_csawmgt +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/control_csawmgt Checking test 042 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1252,14 +1252,14 @@ Checking test 042 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 356.643545 -The maximum resident set size (KB) = 488440 +The total amount of wall time = 358.902514 +The maximum resident set size (KB) = 486868 Test 042 control_csawmgt PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_flake -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_28201/control_flake +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/control_flake Checking test 043 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1270,14 +1270,14 @@ Checking test 043 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 234.576438 -The maximum resident set size (KB) = 490928 +The total amount of wall time = 234.215767 +The maximum resident set size (KB) = 490268 Test 043 control_flake PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_ras -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_28201/control_ras +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/control_ras Checking test 044 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1288,40 +1288,40 @@ Checking test 044 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 192.882057 -The maximum resident set size (KB) = 456248 +The total amount of wall time = 193.985682 +The maximum resident set size (KB) = 454516 Test 044 control_ras PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_wam_repro -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_28201/control_wam_repro +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/control_wam_repro Checking test 045 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 120.109829 -The maximum resident set size (KB) = 167736 +The total amount of wall time = 124.471054 +The maximum resident set size (KB) = 168712 Test 045 control_wam PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_debug -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_28201/control_debug +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/control_debug Checking test 046 control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 144.570799 -The maximum resident set size (KB) = 585244 +The total amount of wall time = 144.580357 +The maximum resident set size (KB) = 583368 Test 046 control_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_CubedSphereGrid_debug -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_28201/control_CubedSphereGrid_debug +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/control_CubedSphereGrid_debug Checking test 047 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1348,428 +1348,428 @@ Checking test 047 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 154.765622 -The maximum resident set size (KB) = 585576 +The total amount of wall time = 154.185990 +The maximum resident set size (KB) = 584352 Test 047 control_CubedSphereGrid_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_wrtGauss_netcdf_parallel_debug -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_28201/control_wrtGauss_netcdf_parallel_debug +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/control_wrtGauss_netcdf_parallel_debug Checking test 048 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 146.978195 -The maximum resident set size (KB) = 585424 +The total amount of wall time = 147.376762 +The maximum resident set size (KB) = 583396 Test 048 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_stochy_debug -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_28201/control_stochy_debug +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/control_stochy_debug Checking test 049 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 166.613092 -The maximum resident set size (KB) = 588100 +The total amount of wall time = 164.229641 +The maximum resident set size (KB) = 589612 Test 049 control_stochy_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_lndp_debug -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_28201/control_lndp_debug +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/control_lndp_debug Checking test 050 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 150.706397 -The maximum resident set size (KB) = 590024 +The total amount of wall time = 149.105180 +The maximum resident set size (KB) = 587572 Test 050 control_lndp_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_rrtmgp_debug -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_28201/control_rrtmgp_debug +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/control_rrtmgp_debug Checking test 051 control_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 160.519693 -The maximum resident set size (KB) = 686824 +The total amount of wall time = 161.725291 +The maximum resident set size (KB) = 687812 Test 051 control_rrtmgp_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_csawmg_debug -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_28201/control_csawmg_debug +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/control_csawmg_debug Checking test 052 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 233.776794 -The maximum resident set size (KB) = 625860 +The total amount of wall time = 233.485463 +The maximum resident set size (KB) = 625696 Test 052 control_csawmg_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_csawmgt_debug -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_28201/control_csawmgt_debug +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/control_csawmgt_debug Checking test 053 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 229.276802 -The maximum resident set size (KB) = 626040 +The total amount of wall time = 229.099487 +The maximum resident set size (KB) = 625328 Test 053 control_csawmgt_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_ras_debug -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_28201/control_ras_debug +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/control_ras_debug Checking test 054 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 150.374515 -The maximum resident set size (KB) = 596180 +The total amount of wall time = 150.576578 +The maximum resident set size (KB) = 595300 Test 054 control_ras_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_diag_debug -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_28201/control_diag_debug +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/control_diag_debug Checking test 055 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 154.067025 -The maximum resident set size (KB) = 641084 +The total amount of wall time = 154.790568 +The maximum resident set size (KB) = 641588 Test 055 control_diag_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_debug_p8 -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_28201/control_debug_p8 +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/control_debug_p8 Checking test 056 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 161.430282 -The maximum resident set size (KB) = 971296 +The total amount of wall time = 161.138395 +The maximum resident set size (KB) = 971408 Test 056 control_debug_p8 PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_thompson_debug -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_28201/control_thompson_debug +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/control_thompson_debug Checking test 057 control_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 176.403400 -The maximum resident set size (KB) = 945440 +The total amount of wall time = 174.595791 +The maximum resident set size (KB) = 943244 Test 057 control_thompson_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_thompson_no_aero_debug -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_28201/control_thompson_no_aero_debug +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/control_thompson_no_aero_debug Checking test 058 control_thompson_no_aero_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 165.747817 -The maximum resident set size (KB) = 939576 +The total amount of wall time = 163.505471 +The maximum resident set size (KB) = 940212 Test 058 control_thompson_no_aero_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_thompson_debug_extdiag -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_28201/control_thompson_extdiag_debug +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/control_thompson_extdiag_debug Checking test 059 control_thompson_extdiag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 182.994116 -The maximum resident set size (KB) = 972024 +The total amount of wall time = 183.085401 +The maximum resident set size (KB) = 973148 Test 059 control_thompson_extdiag_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_thompson_progcld_thompson_debug -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_28201/control_thompson_progcld_thompson_debug +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/control_thompson_progcld_thompson_debug Checking test 060 control_thompson_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 174.478556 -The maximum resident set size (KB) = 945376 +The total amount of wall time = 174.898970 +The maximum resident set size (KB) = 943220 Test 060 control_thompson_progcld_thompson_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/fv3_regional_debug -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_28201/regional_debug +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/regional_debug Checking test 061 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -The total amount of wall time = 248.193423 -The maximum resident set size (KB) = 552816 +The total amount of wall time = 248.171288 +The maximum resident set size (KB) = 553240 Test 061 regional_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/rap_control_debug -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_28201/rap_control_debug +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/rap_control_debug Checking test 062 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 270.859619 -The maximum resident set size (KB) = 950128 +The total amount of wall time = 269.626420 +The maximum resident set size (KB) = 949572 Test 062 rap_control_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/rap_control_debug -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_28201/rap_unified_drag_suite_debug +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/rap_unified_drag_suite_debug Checking test 063 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 272.447770 -The maximum resident set size (KB) = 950032 +The total amount of wall time = 270.084650 +The maximum resident set size (KB) = 949552 Test 063 rap_unified_drag_suite_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/rap_diag_debug -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_28201/rap_diag_debug +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/rap_diag_debug Checking test 064 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 289.093502 -The maximum resident set size (KB) = 1032240 +The total amount of wall time = 285.660524 +The maximum resident set size (KB) = 1032660 Test 064 rap_diag_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/rap_cires_ugwp_debug -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_28201/rap_cires_ugwp_debug +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/rap_cires_ugwp_debug Checking test 065 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 277.447502 -The maximum resident set size (KB) = 954844 +The total amount of wall time = 274.565453 +The maximum resident set size (KB) = 954624 Test 065 rap_cires_ugwp_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/rap_cires_ugwp_debug -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_28201/rap_unified_ugwp_debug +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/rap_unified_ugwp_debug Checking test 066 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 277.242141 -The maximum resident set size (KB) = 950164 +The total amount of wall time = 275.828699 +The maximum resident set size (KB) = 949560 Test 066 rap_unified_ugwp_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/rap_lndp_debug -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_28201/rap_lndp_debug +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/rap_lndp_debug Checking test 067 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 273.819647 -The maximum resident set size (KB) = 950740 +The total amount of wall time = 271.974448 +The maximum resident set size (KB) = 954128 Test 067 rap_lndp_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/rap_flake_debug -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_28201/rap_flake_debug +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/rap_flake_debug Checking test 068 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 271.746135 -The maximum resident set size (KB) = 950156 +The total amount of wall time = 269.298791 +The maximum resident set size (KB) = 949784 Test 068 rap_flake_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/rap_progcld_thompson_debug -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_28201/rap_progcld_thompson_debug +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/rap_progcld_thompson_debug Checking test 069 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 272.060742 -The maximum resident set size (KB) = 950128 +The total amount of wall time = 270.106250 +The maximum resident set size (KB) = 949752 Test 069 rap_progcld_thompson_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/rap_noah_debug -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_28201/rap_noah_debug +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/rap_noah_debug Checking test 070 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 266.201164 -The maximum resident set size (KB) = 948364 +The total amount of wall time = 264.560426 +The maximum resident set size (KB) = 948548 Test 070 rap_noah_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/rap_rrtmgp_debug -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_28201/rap_rrtmgp_debug +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/rap_rrtmgp_debug Checking test 071 rap_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 453.084581 -The maximum resident set size (KB) = 1056344 +The total amount of wall time = 451.184487 +The maximum resident set size (KB) = 1055608 Test 071 rap_rrtmgp_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/rap_sfcdiff_debug -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_28201/rap_sfcdiff_debug +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/rap_sfcdiff_debug Checking test 072 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 271.624340 -The maximum resident set size (KB) = 949876 +The total amount of wall time = 271.533863 +The maximum resident set size (KB) = 949460 Test 072 rap_sfcdiff_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_28201/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/rap_noah_sfcdiff_cires_ugwp_debug Checking test 073 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 440.123878 -The maximum resident set size (KB) = 951652 +The total amount of wall time = 439.403465 +The maximum resident set size (KB) = 949404 Test 073 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/rrfs_v1beta_debug -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_28201/rrfs_v1beta_debug +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/rrfs_v1beta_debug Checking test 074 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 267.435430 -The maximum resident set size (KB) = 950460 +The total amount of wall time = 265.932946 +The maximum resident set size (KB) = 948384 Test 074 rrfs_v1beta_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_wam_debug -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_28201/control_wam_debug +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/control_wam_debug Checking test 075 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -The total amount of wall time = 272.060882 -The maximum resident set size (KB) = 197340 +The total amount of wall time = 273.286870 +The maximum resident set size (KB) = 197968 Test 075 control_wam_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/hafs_regional_atm -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_28201/hafs_regional_atm +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/hafs_regional_atm Checking test 076 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 327.897901 -The maximum resident set size (KB) = 641004 +The total amount of wall time = 344.339676 +The maximum resident set size (KB) = 644536 Test 076 hafs_regional_atm PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/hafs_regional_atm_thompson_gfdlsf -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_28201/hafs_regional_atm_thompson_gfdlsf +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/hafs_regional_atm_thompson_gfdlsf Checking test 077 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 374.948121 -The maximum resident set size (KB) = 1003112 +The total amount of wall time = 380.704051 +The maximum resident set size (KB) = 999424 Test 077 hafs_regional_atm_thompson_gfdlsf PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/hafs_regional_atm_ocn -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_28201/hafs_regional_atm_ocn +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/hafs_regional_atm_ocn Checking test 078 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -1778,28 +1778,28 @@ Checking test 078 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 509.150263 -The maximum resident set size (KB) = 642916 +The total amount of wall time = 511.717155 +The maximum resident set size (KB) = 641876 Test 078 hafs_regional_atm_ocn PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/hafs_regional_atm_wav -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_28201/hafs_regional_atm_wav +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/hafs_regional_atm_wav Checking test 079 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK -The total amount of wall time = 921.536365 -The maximum resident set size (KB) = 644940 +The total amount of wall time = 966.013061 +The maximum resident set size (KB) = 639152 Test 079 hafs_regional_atm_wav PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/hafs_regional_atm_ocn_wav -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_28201/hafs_regional_atm_ocn_wav +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/hafs_regional_atm_ocn_wav Checking test 080 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -1808,28 +1808,28 @@ Checking test 080 hafs_regional_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK -The total amount of wall time = 990.057885 -The maximum resident set size (KB) = 642368 +The total amount of wall time = 996.625021 +The maximum resident set size (KB) = 641888 Test 080 hafs_regional_atm_ocn_wav PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/hafs_regional_1nest_atm -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_28201/hafs_regional_1nest_atm +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/hafs_regional_1nest_atm Checking test 081 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 367.356711 -The maximum resident set size (KB) = 242852 +The total amount of wall time = 367.968114 +The maximum resident set size (KB) = 241944 Test 081 hafs_regional_1nest_atm PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/hafs_regional_telescopic_2nests_atm -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_28201/hafs_regional_telescopic_2nests_atm +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/hafs_regional_telescopic_2nests_atm Checking test 082 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -1838,26 +1838,26 @@ Checking test 082 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -The total amount of wall time = 383.759077 -The maximum resident set size (KB) = 246928 +The total amount of wall time = 384.908137 +The maximum resident set size (KB) = 246232 Test 082 hafs_regional_telescopic_2nests_atm PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/hafs_global_1nest_atm -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_28201/hafs_global_1nest_atm +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_15029/hafs_global_1nest_atm Checking test 083 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 166.942532 -The maximum resident set size (KB) = 148480 +The total amount of wall time = 166.289941 +The maximum resident set size (KB) = 145984 Test 083 hafs_global_1nest_atm PASS REGRESSION TEST WAS SUCCESSFUL -Fri Apr 1 19:33:44 UTC 2022 -Elapsed time: 00h:40m:05s. Have a nice day! +Mon Apr 4 16:15:34 UTC 2022 +Elapsed time: 00h:40m:04s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_dell_p3.log b/tests/RegressionTests_wcoss_dell_p3.log index 8dba9bd1c7..8b3c0f7649 100644 --- a/tests/RegressionTests_wcoss_dell_p3.log +++ b/tests/RegressionTests_wcoss_dell_p3.log @@ -1,24 +1,24 @@ -Fri Apr 1 19:47:59 UTC 2022 +Mon Apr 4 15:28:34 UTC 2022 Start Regression test -Compile 001 elapsed time 2064 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1,FV3_GFS_v16_coupled_p7_rrtmgp,FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 574 seconds. -DAPP=S2SA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 003 elapsed time 1131 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP,FV3_GFS_v16_p7_rrtmgp,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 004 elapsed time 1117 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 005 elapsed time 1212 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 791 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DREPRO=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -Compile 007 elapsed time 494 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp,FV3_GFS_v16_thompson,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 340 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP,FV3_RAP_cires_ugwp,FV3_RAP_unified_ugwp,FV3_RAP_flake -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 359 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP_noah,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 010 elapsed time 290 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 011 elapsed time 1438 seconds. -DAPP=HAFSW -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 1427 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 792 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 014 elapsed time 421 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 015 elapsed time 1138 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 001 elapsed time 2113 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1,FV3_GFS_v16_coupled_p7_rrtmgp,FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 581 seconds. -DAPP=S2SA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 003 elapsed time 1129 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP,FV3_GFS_v16_p7_rrtmgp,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 004 elapsed time 1128 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 005 elapsed time 1238 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 802 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DREPRO=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit +Compile 007 elapsed time 466 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp,FV3_GFS_v16_thompson,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 352 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP,FV3_RAP_cires_ugwp,FV3_RAP_unified_ugwp,FV3_RAP_flake -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 366 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP_noah,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 010 elapsed time 287 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 011 elapsed time 1432 seconds. -DAPP=HAFSW -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 1425 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 866 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 014 elapsed time 340 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 015 elapsed time 1363 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/cpld_control_p8 -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/cpld_control_p8 +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/cpld_control_p8 Checking test 001 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -84,14 +84,14 @@ Checking test 001 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK -[0] The total amount of wall time = 390.632064 -[0] The maximum resident set size (KB) = 1149128 +[0] The total amount of wall time = 386.173839 +[0] The maximum resident set size (KB) = 1155404 Test 001 cpld_control_p8 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/cpld_control_p8 -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/cpld_2threads_p8 +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/cpld_2threads_p8 Checking test 002 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -145,14 +145,14 @@ Checking test 002 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK -[0] The total amount of wall time = 423.195823 -[0] The maximum resident set size (KB) = 1567484 +[0] The total amount of wall time = 421.617211 +[0] The maximum resident set size (KB) = 1567076 Test 002 cpld_2threads_p8 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/cpld_control_p8 -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/cpld_decomp_p8 +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/cpld_decomp_p8 Checking test 003 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -206,14 +206,14 @@ Checking test 003 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK -[0] The total amount of wall time = 392.037472 -[0] The maximum resident set size (KB) = 1145696 +[0] The total amount of wall time = 388.765338 +[0] The maximum resident set size (KB) = 1147736 Test 003 cpld_decomp_p8 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/cpld_control_p8 -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/cpld_mpi_p8 +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/cpld_mpi_p8 Checking test 004 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -267,14 +267,14 @@ Checking test 004 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK -[0] The total amount of wall time = 321.491270 -[0] The maximum resident set size (KB) = 1041160 +[0] The total amount of wall time = 320.993729 +[0] The maximum resident set size (KB) = 1041132 Test 004 cpld_mpi_p8 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/cpld_control_p7_rrtmgp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/cpld_control_p7_rrtmgp +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/cpld_control_p7_rrtmgp Checking test 005 cpld_control_p7_rrtmgp results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -327,14 +327,14 @@ Checking test 005 cpld_control_p7_rrtmgp results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK -[0] The total amount of wall time = 303.382742 -[0] The maximum resident set size (KB) = 646472 +[0] The total amount of wall time = 301.571985 +[0] The maximum resident set size (KB) = 645440 Test 005 cpld_control_p7_rrtmgp PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/cpld_bmark_p7 -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/cpld_bmark_p7 +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/cpld_bmark_p7 Checking test 006 cpld_bmark_p7 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -379,14 +379,14 @@ Checking test 006 cpld_bmark_p7 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK -[0] The total amount of wall time = 1034.401004 -[0] The maximum resident set size (KB) = 1215008 +[0] The total amount of wall time = 1025.597359 +[0] The maximum resident set size (KB) = 1218268 Test 006 cpld_bmark_p7 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/cpld_bmark_p8 -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/cpld_bmark_p8 +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/cpld_bmark_p8 Checking test 007 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -432,14 +432,14 @@ Checking test 007 cpld_bmark_p8 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK -[0] The total amount of wall time = 1191.049249 -[0] The maximum resident set size (KB) = 2822388 +[0] The total amount of wall time = 1201.651170 +[0] The maximum resident set size (KB) = 2825008 Test 007 cpld_bmark_p8 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/cpld_control_c96_p8 -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/cpld_control_c96_p8 +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/cpld_control_c96_p8 Checking test 008 cpld_control_c96_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -502,14 +502,14 @@ Checking test 008 cpld_control_c96_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -[0] The total amount of wall time = 375.997877 -[0] The maximum resident set size (KB) = 1146184 +[0] The total amount of wall time = 383.405551 +[0] The maximum resident set size (KB) = 1149680 Test 008 cpld_control_c96_p8 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/cpld_control_c96_p8 -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/cpld_restart_c96_p8 +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/cpld_restart_c96_p8 Checking test 009 cpld_restart_c96_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -560,14 +560,14 @@ Checking test 009 cpld_restart_c96_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -[0] The total amount of wall time = 209.254514 -[0] The maximum resident set size (KB) = 1112780 +[0] The total amount of wall time = 210.010122 +[0] The maximum resident set size (KB) = 1112452 Test 009 cpld_restart_c96_p8 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/cpld_control_c192_p8 -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/cpld_control_c192_p8 +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/cpld_control_c192_p8 Checking test 010 cpld_control_c192_p8 results .... Comparing sfcf036.tile1.nc .........OK Comparing sfcf036.tile2.nc .........OK @@ -618,14 +618,14 @@ Checking test 010 cpld_control_c192_p8 results .... Comparing RESTART/iced.2021-03-23-64800.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-64800.nc .........OK -[0] The total amount of wall time = 1703.184410 -[0] The maximum resident set size (KB) = 1562396 +[0] The total amount of wall time = 1705.927095 +[0] The maximum resident set size (KB) = 1566456 Test 010 cpld_control_c192_p8 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/cpld_control_c192_p8 -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/cpld_restart_c192_p8 +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/cpld_restart_c192_p8 Checking test 011 cpld_restart_c192_p8 results .... Comparing sfcf036.tile1.nc .........OK Comparing sfcf036.tile2.nc .........OK @@ -676,14 +676,14 @@ Checking test 011 cpld_restart_c192_p8 results .... Comparing RESTART/iced.2021-03-23-64800.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-64800.nc .........OK -[0] The total amount of wall time = 1130.723648 -[0] The maximum resident set size (KB) = 1788976 +[0] The total amount of wall time = 1117.746168 +[0] The maximum resident set size (KB) = 1787592 Test 011 cpld_restart_c192_p8 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/cpld_control_c384_p8 -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/cpld_control_c384_p8 +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/cpld_control_c384_p8 Checking test 012 cpld_control_c384_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -727,14 +727,14 @@ Checking test 012 cpld_control_c384_p8 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK -[0] The total amount of wall time = 1278.345127 -[0] The maximum resident set size (KB) = 2810972 +[0] The total amount of wall time = 1286.880564 +[0] The maximum resident set size (KB) = 2808480 Test 012 cpld_control_c384_p8 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/cpld_control_c384_p8 -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/cpld_restart_c384_p8 +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/cpld_restart_c384_p8 Checking test 013 cpld_restart_c384_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -778,14 +778,14 @@ Checking test 013 cpld_restart_c384_p8 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK -[0] The total amount of wall time = 722.761213 -[0] The maximum resident set size (KB) = 2779432 +[0] The total amount of wall time = 709.174279 +[0] The maximum resident set size (KB) = 2783708 Test 013 cpld_restart_c384_p8 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/cpld_debug_p8 -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/cpld_debug_p8 +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/cpld_debug_p8 Checking test 014 cpld_debug_p8 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -836,14 +836,14 @@ Checking test 014 cpld_debug_p8 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK -[0] The total amount of wall time = 1159.329155 -[0] The maximum resident set size (KB) = 1250060 +[0] The total amount of wall time = 1159.607151 +[0] The maximum resident set size (KB) = 1246948 Test 014 cpld_debug_p8 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/control +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/control Checking test 015 control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -890,14 +890,14 @@ Checking test 015 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 151.119088 -[0] The maximum resident set size (KB) = 460612 +[0] The total amount of wall time = 147.022258 +[0] The maximum resident set size (KB) = 466060 Test 015 control PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/control_decomp +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/control_decomp Checking test 016 control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -940,28 +940,28 @@ Checking test 016 control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 156.256581 -[0] The maximum resident set size (KB) = 461444 +[0] The total amount of wall time = 153.259084 +[0] The maximum resident set size (KB) = 463580 Test 016 control_decomp PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/control_2dwrtdecomp +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/control_2dwrtdecomp Checking test 017 control_2dwrtdecomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK -[0] The total amount of wall time = 142.387004 -[0] The maximum resident set size (KB) = 464572 +[0] The total amount of wall time = 144.040811 +[0] The maximum resident set size (KB) = 463516 Test 017 control_2dwrtdecomp PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/control_2threads +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/control_2threads Checking test 018 control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1004,14 +1004,14 @@ Checking test 018 control_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 138.605189 -[0] The maximum resident set size (KB) = 510416 +[0] The total amount of wall time = 135.760913 +[0] The maximum resident set size (KB) = 518044 Test 018 control_2threads PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/control_restart +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/control_restart Checking test 019 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1050,14 +1050,14 @@ Checking test 019 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 76.898093 -[0] The maximum resident set size (KB) = 211112 +[0] The total amount of wall time = 75.862592 +[0] The maximum resident set size (KB) = 205988 Test 019 control_restart PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/control_fhzero +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/control_fhzero Checking test 020 control_fhzero results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -1100,14 +1100,14 @@ Checking test 020 control_fhzero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 139.446211 -[0] The maximum resident set size (KB) = 460908 +[0] The total amount of wall time = 143.657561 +[0] The maximum resident set size (KB) = 461524 Test 020 control_fhzero PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_CubedSphereGrid -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/control_CubedSphereGrid +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/control_CubedSphereGrid Checking test 021 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1134,14 +1134,14 @@ Checking test 021 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -[0] The total amount of wall time = 146.064943 -[0] The maximum resident set size (KB) = 460200 +[0] The total amount of wall time = 141.561517 +[0] The maximum resident set size (KB) = 466504 Test 021 control_CubedSphereGrid PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_latlon -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/control_latlon +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/control_latlon Checking test 022 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1152,32 +1152,32 @@ Checking test 022 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 147.829071 -[0] The maximum resident set size (KB) = 465328 +[0] The total amount of wall time = 148.125380 +[0] The maximum resident set size (KB) = 462244 Test 022 control_latlon PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_wrtGauss_netcdf_parallel -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/control_wrtGauss_netcdf_parallel +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/control_wrtGauss_netcdf_parallel Checking test 023 control_wrtGauss_netcdf_parallel results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc .........OK + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 151.252473 -[0] The maximum resident set size (KB) = 463596 +[0] The total amount of wall time = 147.294436 +[0] The maximum resident set size (KB) = 467924 Test 023 control_wrtGauss_netcdf_parallel PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_c48 -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/control_c48 +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/control_c48 Checking test 024 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1216,14 +1216,14 @@ Checking test 024 control_c48 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 456.805224 -[0] The maximum resident set size (KB) = 660496 +[0] The total amount of wall time = 455.970704 +[0] The maximum resident set size (KB) = 655516 Test 024 control_c48 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_c192 -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/control_c192 +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/control_c192 Checking test 025 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1234,14 +1234,14 @@ Checking test 025 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 582.418876 -[0] The maximum resident set size (KB) = 558012 +[0] The total amount of wall time = 580.873243 +[0] The maximum resident set size (KB) = 561964 Test 025 control_c192 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_c384 -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/control_c384 +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/control_c384 Checking test 026 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1252,14 +1252,14 @@ Checking test 026 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -[0] The total amount of wall time = 1074.555954 -[0] The maximum resident set size (KB) = 819924 +[0] The total amount of wall time = 1072.868970 +[0] The maximum resident set size (KB) = 817272 Test 026 control_c384 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_c384gdas -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/control_c384gdas +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/control_c384gdas Checking test 027 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1302,14 +1302,14 @@ Checking test 027 control_c384gdas results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 945.144780 -[0] The maximum resident set size (KB) = 967420 +[0] The total amount of wall time = 946.016248 +[0] The maximum resident set size (KB) = 963992 Test 027 control_c384gdas PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_stochy -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/control_stochy +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/control_stochy Checking test 028 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1320,28 +1320,28 @@ Checking test 028 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -[0] The total amount of wall time = 96.384017 -[0] The maximum resident set size (KB) = 467432 +[0] The total amount of wall time = 99.153530 +[0] The maximum resident set size (KB) = 467804 Test 028 control_stochy PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_stochy -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/control_stochy_restart +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/control_stochy_restart Checking test 029 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 = 53.204451 -[0] The maximum resident set size (KB) = 263344 +[0] The total amount of wall time = 53.173223 +[0] The maximum resident set size (KB) = 265748 Test 029 control_stochy_restart PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_lndp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/control_lndp +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/control_lndp Checking test 030 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1352,14 +1352,14 @@ Checking test 030 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -[0] The total amount of wall time = 87.246635 -[0] The maximum resident set size (KB) = 468868 +[0] The total amount of wall time = 86.721803 +[0] The maximum resident set size (KB) = 468060 Test 030 control_lndp PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_iovr4 -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/control_iovr4 +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/control_iovr4 Checking test 031 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1374,14 +1374,14 @@ Checking test 031 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 150.661445 -[0] The maximum resident set size (KB) = 461128 +[0] The total amount of wall time = 147.823072 +[0] The maximum resident set size (KB) = 462648 Test 031 control_iovr4 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_iovr5 -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/control_iovr5 +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/control_iovr5 Checking test 032 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1396,14 +1396,14 @@ Checking test 032 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 149.815453 -[0] The maximum resident set size (KB) = 460892 +[0] The total amount of wall time = 151.051685 +[0] The maximum resident set size (KB) = 463496 Test 032 control_iovr5 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_p8 -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/control_p8 +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/control_p8 Checking test 033 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1450,14 +1450,14 @@ Checking test 033 control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 173.280327 -[0] The maximum resident set size (KB) = 837844 +[0] The total amount of wall time = 172.677512 +[0] The maximum resident set size (KB) = 847136 Test 033 control_p8 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_p8 -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/control_restart_p8 +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/control_restart_p8 Checking test 034 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1496,14 +1496,14 @@ Checking test 034 control_restart_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 91.792094 -[0] The maximum resident set size (KB) = 590968 +[0] The total amount of wall time = 92.005996 +[0] The maximum resident set size (KB) = 594008 Test 034 control_restart_p8 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_p8 -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/control_decomp_p8 +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/control_decomp_p8 Checking test 035 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1546,14 +1546,14 @@ Checking test 035 control_decomp_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 185.779574 -[0] The maximum resident set size (KB) = 839080 +[0] The total amount of wall time = 177.592974 +[0] The maximum resident set size (KB) = 839568 Test 035 control_decomp_p8 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_p8 -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/control_2threads_p8 +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/control_2threads_p8 Checking test 036 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1596,14 +1596,14 @@ Checking test 036 control_2threads_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 165.520896 -[0] The maximum resident set size (KB) = 913584 +[0] The total amount of wall time = 164.791707 +[0] The maximum resident set size (KB) = 919728 Test 036 control_2threads_p8 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_p7_rrtmgp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/control_p7_rrtmgp +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/control_p7_rrtmgp Checking test 037 control_p7_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1650,14 +1650,14 @@ Checking test 037 control_p7_rrtmgp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 223.051669 -[0] The maximum resident set size (KB) = 589716 +[0] The total amount of wall time = 221.323258 +[0] The maximum resident set size (KB) = 586560 Test 037 control_p7_rrtmgp PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/fv3_regional_control -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/regional_control +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/regional_control Checking test 038 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1668,42 +1668,42 @@ Checking test 038 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -[0] The total amount of wall time = 371.874102 -[0] The maximum resident set size (KB) = 577884 +[0] The total amount of wall time = 367.246667 +[0] The maximum resident set size (KB) = 578524 Test 038 regional_control PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/fv3_regional_control -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/regional_restart +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/regional_restart Checking test 039 regional_restart results .... Comparing dynf024.nc .........OK Comparing phyf024.nc .........OK Comparing PRSLEV.GrbF24 .........OK Comparing NATLEV.GrbF24 .........OK -[0] The total amount of wall time = 200.324787 -[0] The maximum resident set size (KB) = 579304 +[0] The total amount of wall time = 200.821365 +[0] The maximum resident set size (KB) = 583620 Test 039 regional_restart PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/fv3_regional_control -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/regional_control_2dwrtdecomp +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/regional_control_2dwrtdecomp Checking test 040 regional_control_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK -[0] The total amount of wall time = 366.036667 -[0] The maximum resident set size (KB) = 575568 +[0] The total amount of wall time = 364.773587 +[0] The maximum resident set size (KB) = 575292 Test 040 regional_control_2dwrtdecomp PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/fv3_regional_noquilt -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/regional_noquilt +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/regional_noquilt Checking test 041 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1711,14 +1711,14 @@ Checking test 041 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 = 396.107698 -[0] The maximum resident set size (KB) = 609120 +[0] The total amount of wall time = 393.666336 +[0] The maximum resident set size (KB) = 609124 Test 041 regional_noquilt PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/fv3_regional_control -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/regional_2threads +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/regional_2threads Checking test 042 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1729,14 +1729,14 @@ Checking test 042 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -[0] The total amount of wall time = 217.064912 -[0] The maximum resident set size (KB) = 580016 +[0] The total amount of wall time = 215.473448 +[0] The maximum resident set size (KB) = 580456 Test 042 regional_2threads PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/fv3_regional_hafs -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/regional_hafs +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/regional_hafs Checking test 043 regional_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1745,28 +1745,28 @@ Checking test 043 regional_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK -[0] The total amount of wall time = 366.073696 -[0] The maximum resident set size (KB) = 579008 +[0] The total amount of wall time = 365.105468 +[0] The maximum resident set size (KB) = 576616 Test 043 regional_hafs PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/fv3_regional_netcdf_parallel -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/regional_netcdf_parallel +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/regional_netcdf_parallel Checking test 044 regional_netcdf_parallel results .... - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK - Comparing phyf000.nc .........OK + Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf024.nc ............ALT CHECK......OK + Comparing phyf000.nc ............ALT CHECK......OK Comparing phyf024.nc .........OK -[0] The total amount of wall time = 369.410964 -[0] The maximum resident set size (KB) = 575544 +[0] The total amount of wall time = 366.129634 +[0] The maximum resident set size (KB) = 574956 Test 044 regional_netcdf_parallel PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/fv3_regional_RRTMGP -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/regional_RRTMGP +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/regional_RRTMGP Checking test 045 regional_RRTMGP results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1777,14 +1777,14 @@ Checking test 045 regional_RRTMGP results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -[0] The total amount of wall time = 503.982760 -[0] The maximum resident set size (KB) = 699828 +[0] The total amount of wall time = 502.316838 +[0] The maximum resident set size (KB) = 702140 Test 045 regional_RRTMGP PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/fv3_regional_3km -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/regional_3km +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/regional_3km Checking test 046 regional_3km results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1795,14 +1795,14 @@ Checking test 046 regional_3km results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -[0] The total amount of wall time = 302.452505 -[0] The maximum resident set size (KB) = 606136 +[0] The total amount of wall time = 296.652793 +[0] The maximum resident set size (KB) = 611136 Test 046 regional_3km PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/rap_control -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/rap_control +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/rap_control Checking test 047 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1849,14 +1849,14 @@ Checking test 047 rap_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 417.426185 -[0] The maximum resident set size (KB) = 831804 +[0] The total amount of wall time = 412.826248 +[0] The maximum resident set size (KB) = 832516 Test 047 rap_control PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/regional_spp_sppt_shum_skeb -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/regional_spp_sppt_shum_skeb +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/regional_spp_sppt_shum_skeb Checking test 048 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -1867,14 +1867,14 @@ Checking test 048 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -[0] The total amount of wall time = 256.390119 -[0] The maximum resident set size (KB) = 927496 +[0] The total amount of wall time = 255.312618 +[0] The maximum resident set size (KB) = 930464 Test 048 regional_spp_sppt_shum_skeb PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/rap_control -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/rap_2threads +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/rap_2threads Checking test 049 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1921,14 +1921,14 @@ Checking test 049 rap_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 393.089257 -[0] The maximum resident set size (KB) = 898564 +[0] The total amount of wall time = 389.394809 +[0] The maximum resident set size (KB) = 900684 Test 049 rap_2threads PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/rap_control -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/rap_restart +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/rap_restart Checking test 050 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1967,14 +1967,14 @@ Checking test 050 rap_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 209.605084 -[0] The maximum resident set size (KB) = 588984 +[0] The total amount of wall time = 215.192619 +[0] The maximum resident set size (KB) = 590232 Test 050 rap_restart PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/rap_sfcdiff -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/rap_sfcdiff +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/rap_sfcdiff Checking test 051 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2021,14 +2021,14 @@ Checking test 051 rap_sfcdiff results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 419.440023 -[0] The maximum resident set size (KB) = 831952 +[0] The total amount of wall time = 414.640701 +[0] The maximum resident set size (KB) = 833600 Test 051 rap_sfcdiff PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/rap_sfcdiff -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/rap_sfcdiff_restart +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/rap_sfcdiff_restart Checking test 052 rap_sfcdiff_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2067,14 +2067,14 @@ Checking test 052 rap_sfcdiff_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 214.545612 -[0] The maximum resident set size (KB) = 588072 +[0] The total amount of wall time = 215.969082 +[0] The maximum resident set size (KB) = 587164 Test 052 rap_sfcdiff_restart PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/hrrr_control -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/hrrr_control +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/hrrr_control Checking test 053 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2121,14 +2121,14 @@ Checking test 053 hrrr_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 395.230789 -[0] The maximum resident set size (KB) = 834108 +[0] The total amount of wall time = 397.437709 +[0] The maximum resident set size (KB) = 829212 Test 053 hrrr_control PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/rrfs_v1beta -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/rrfs_v1beta +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/rrfs_v1beta Checking test 054 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2175,14 +2175,14 @@ Checking test 054 rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 410.248271 -[0] The maximum resident set size (KB) = 829968 +[0] The total amount of wall time = 411.199522 +[0] The maximum resident set size (KB) = 830536 Test 054 rrfs_v1beta PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/rrfs_v1nssl -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/rrfs_v1nssl +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/rrfs_v1nssl Checking test 055 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2197,14 +2197,14 @@ Checking test 055 rrfs_v1nssl results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 518.901065 -[0] The maximum resident set size (KB) = 524300 +[0] The total amount of wall time = 513.067800 +[0] The maximum resident set size (KB) = 526736 Test 055 rrfs_v1nssl PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/rrfs_v1nssl_nohailnoccn -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/rrfs_v1nssl_nohailnoccn +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/rrfs_v1nssl_nohailnoccn Checking test 056 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2219,14 +2219,14 @@ Checking test 056 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 497.625648 -[0] The maximum resident set size (KB) = 514612 +[0] The total amount of wall time = 498.670849 +[0] The maximum resident set size (KB) = 516076 Test 056 rrfs_v1nssl_nohailnoccn PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/rrfs_conus13km_hrrr_warm -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/rrfs_conus13km_hrrr_warm +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/rrfs_conus13km_hrrr_warm Checking test 057 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2235,14 +2235,14 @@ Checking test 057 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -[0] The total amount of wall time = 193.022541 -[0] The maximum resident set size (KB) = 662060 +[0] The total amount of wall time = 188.578773 +[0] The maximum resident set size (KB) = 664284 Test 057 rrfs_conus13km_hrrr_warm PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/rrfs_conus13km_radar_tten_warm -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/rrfs_conus13km_radar_tten_warm +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/rrfs_conus13km_radar_tten_warm Checking test 058 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2251,14 +2251,14 @@ Checking test 058 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -[0] The total amount of wall time = 194.148112 -[0] The maximum resident set size (KB) = 665596 +[0] The total amount of wall time = 187.410274 +[0] The maximum resident set size (KB) = 662796 Test 058 rrfs_conus13km_radar_tten_warm PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_rrtmgp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/control_rrtmgp +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/control_rrtmgp Checking test 059 control_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2269,14 +2269,14 @@ Checking test 059 control_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 243.355387 -[0] The maximum resident set size (KB) = 585032 +[0] The total amount of wall time = 239.154664 +[0] The maximum resident set size (KB) = 588476 Test 059 control_rrtmgp PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_rrtmgp_c192 -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/control_rrtmgp_c192 +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/control_rrtmgp_c192 Checking test 060 control_rrtmgp_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2287,14 +2287,14 @@ Checking test 060 control_rrtmgp_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -[0] The total amount of wall time = 637.967843 -[0] The maximum resident set size (KB) = 787228 +[0] The total amount of wall time = 641.445486 +[0] The maximum resident set size (KB) = 786384 Test 060 control_rrtmgp_c192 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_csawmg -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/control_csawmg +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/control_csawmg Checking test 061 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2305,14 +2305,14 @@ Checking test 061 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 375.794324 -[0] The maximum resident set size (KB) = 525932 +[0] The total amount of wall time = 380.097388 +[0] The maximum resident set size (KB) = 528852 Test 061 control_csawmg PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_csawmgt -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/control_csawmgt +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/control_csawmgt Checking test 062 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2323,14 +2323,14 @@ Checking test 062 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 374.588331 -[0] The maximum resident set size (KB) = 527168 +[0] The total amount of wall time = 374.857629 +[0] The maximum resident set size (KB) = 529504 Test 062 control_csawmgt PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_flake -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/control_flake +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/control_flake Checking test 063 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2341,14 +2341,14 @@ Checking test 063 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 254.930848 -[0] The maximum resident set size (KB) = 538912 +[0] The total amount of wall time = 262.671563 +[0] The maximum resident set size (KB) = 536400 Test 063 control_flake PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_ras -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/control_ras +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/control_ras Checking test 064 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2359,14 +2359,14 @@ Checking test 064 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 199.144267 -[0] The maximum resident set size (KB) = 500328 +[0] The total amount of wall time = 198.029493 +[0] The maximum resident set size (KB) = 499372 Test 064 control_ras PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_thompson -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/control_thompson +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/control_thompson Checking test 065 control_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2377,14 +2377,14 @@ Checking test 065 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 251.359264 -[0] The maximum resident set size (KB) = 853320 +[0] The total amount of wall time = 247.893885 +[0] The maximum resident set size (KB) = 852632 Test 065 control_thompson PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_thompson_no_aero -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/control_thompson_no_aero +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/control_thompson_no_aero Checking test 066 control_thompson_no_aero results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2395,54 +2395,54 @@ Checking test 066 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 239.144618 -[0] The maximum resident set size (KB) = 842304 +[0] The total amount of wall time = 236.109562 +[0] The maximum resident set size (KB) = 844104 Test 066 control_thompson_no_aero PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_wam_repro -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/control_wam_repro +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/control_wam_repro Checking test 067 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -[0] The total amount of wall time = 134.796182 -[0] The maximum resident set size (KB) = 228968 +[0] The total amount of wall time = 132.176415 +[0] The maximum resident set size (KB) = 230352 Test 067 control_wam PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_debug -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/control_debug +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/control_debug Checking test 068 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 = 166.708782 -[0] The maximum resident set size (KB) = 630040 +[0] The total amount of wall time = 166.578760 +[0] The maximum resident set size (KB) = 631068 Test 068 control_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_debug -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/control_2threads_debug +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/control_2threads_debug Checking test 069 control_2threads_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 155.686162 -[0] The maximum resident set size (KB) = 678360 +[0] The total amount of wall time = 156.164248 +[0] The maximum resident set size (KB) = 677656 Test 069 control_2threads_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_CubedSphereGrid_debug -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/control_CubedSphereGrid_debug +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/control_CubedSphereGrid_debug Checking test 070 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2469,416 +2469,428 @@ Checking test 070 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -[0] The total amount of wall time = 181.060350 -[0] The maximum resident set size (KB) = 630328 +[0] The total amount of wall time = 180.859214 +[0] The maximum resident set size (KB) = 626708 Test 070 control_CubedSphereGrid_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_wrtGauss_netcdf_parallel_debug -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/control_wrtGauss_netcdf_parallel_debug +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/control_wrtGauss_netcdf_parallel_debug Checking test 071 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK - Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 169.654083 -[0] The maximum resident set size (KB) = 633112 +[0] The total amount of wall time = 170.581584 +[0] The maximum resident set size (KB) = 626092 Test 071 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_stochy_debug -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/control_stochy_debug +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/control_stochy_debug Checking test 072 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 = 191.969015 -[0] The maximum resident set size (KB) = 634040 +[0] The total amount of wall time = 191.775819 +[0] The maximum resident set size (KB) = 635184 Test 072 control_stochy_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_lndp_debug -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/control_lndp_debug +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/control_lndp_debug Checking test 073 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 172.112325 -[0] The maximum resident set size (KB) = 635152 +[0] The total amount of wall time = 171.339950 +[0] The maximum resident set size (KB) = 636616 Test 073 control_lndp_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_rrtmgp_debug -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/control_rrtmgp_debug +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/control_rrtmgp_debug Checking test 074 control_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 186.249206 -[0] The maximum resident set size (KB) = 726888 +[0] The total amount of wall time = 185.845122 +[0] The maximum resident set size (KB) = 722624 Test 074 control_rrtmgp_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_csawmg_debug -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/control_csawmg_debug +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/control_csawmg_debug Checking test 075 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 269.554376 -[0] The maximum resident set size (KB) = 665436 +[0] The total amount of wall time = 268.288208 +[0] The maximum resident set size (KB) = 665516 Test 075 control_csawmg_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_csawmgt_debug -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/control_csawmgt_debug +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/control_csawmgt_debug Checking test 076 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 = 264.588758 -[0] The maximum resident set size (KB) = 665636 +[0] The total amount of wall time = 264.495463 +[0] The maximum resident set size (KB) = 662548 Test 076 control_csawmgt_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_ras_debug -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/control_ras_debug +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/control_ras_debug Checking test 077 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 = 173.690490 -[0] The maximum resident set size (KB) = 641508 +[0] The total amount of wall time = 173.364417 +[0] The maximum resident set size (KB) = 637580 Test 077 control_ras_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_diag_debug -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/control_diag_debug +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/control_diag_debug Checking test 078 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 = 176.274051 -[0] The maximum resident set size (KB) = 685052 +[0] The total amount of wall time = 176.114471 +[0] The maximum resident set size (KB) = 686380 Test 078 control_diag_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_debug_p8 -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/control_debug_p8 +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/control_debug_p8 Checking test 079 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 = 186.290464 -[0] The maximum resident set size (KB) = 1016208 +[0] The total amount of wall time = 185.652519 +[0] The maximum resident set size (KB) = 1008996 Test 079 control_debug_p8 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_thompson_debug -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/control_thompson_debug +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/control_thompson_debug Checking test 080 control_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 197.083252 -[0] The maximum resident set size (KB) = 991340 +[0] The total amount of wall time = 196.666236 +[0] The maximum resident set size (KB) = 991244 Test 080 control_thompson_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_thompson_no_aero_debug -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/control_thompson_no_aero_debug +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/control_thompson_no_aero_debug Checking test 081 control_thompson_no_aero_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 189.426247 -[0] The maximum resident set size (KB) = 984976 +[0] The total amount of wall time = 188.523374 +[0] The maximum resident set size (KB) = 985072 Test 081 control_thompson_no_aero_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_thompson_debug_extdiag -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/control_thompson_extdiag_debug +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/control_thompson_extdiag_debug Checking test 082 control_thompson_extdiag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 205.150258 -[0] The maximum resident set size (KB) = 1020760 +[0] The total amount of wall time = 206.421406 +[0] The maximum resident set size (KB) = 1022556 Test 082 control_thompson_extdiag_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_thompson_progcld_thompson_debug -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/control_thompson_progcld_thompson_debug +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/control_thompson_progcld_thompson_debug Checking test 083 control_thompson_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 196.745759 -[0] The maximum resident set size (KB) = 991644 +[0] The total amount of wall time = 196.201478 +[0] The maximum resident set size (KB) = 994468 Test 083 control_thompson_progcld_thompson_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/fv3_regional_debug -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/regional_debug +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/regional_debug Checking test 084 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 = 282.437629 -[0] The maximum resident set size (KB) = 609264 +[0] The total amount of wall time = 282.419741 +[0] The maximum resident set size (KB) = 609376 Test 084 regional_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/rap_control_debug -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/rap_control_debug +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/rap_control_debug Checking test 085 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 = 303.795146 -[0] The maximum resident set size (KB) = 994784 +[0] The total amount of wall time = 304.994782 +[0] The maximum resident set size (KB) = 997072 Test 085 rap_control_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/rap_control_debug -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/rap_unified_drag_suite_debug +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/rap_unified_drag_suite_debug Checking test 086 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 305.216089 -[0] The maximum resident set size (KB) = 998164 +[0] The total amount of wall time = 304.574897 +[0] The maximum resident set size (KB) = 990408 Test 086 rap_unified_drag_suite_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/rap_diag_debug -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/rap_diag_debug +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/rap_diag_debug Checking test 087 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 = 321.840545 -[0] The maximum resident set size (KB) = 1079684 +[0] The total amount of wall time = 320.903201 +[0] The maximum resident set size (KB) = 1079048 Test 087 rap_diag_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/rap_cires_ugwp_debug -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/rap_cires_ugwp_debug +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/rap_cires_ugwp_debug Checking test 088 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 = 311.557142 -[0] The maximum resident set size (KB) = 999596 +[0] The total amount of wall time = 310.545891 +[0] The maximum resident set size (KB) = 997568 Test 088 rap_cires_ugwp_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/rap_cires_ugwp_debug -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/rap_unified_ugwp_debug +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/rap_unified_ugwp_debug Checking test 089 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 311.638234 -[0] The maximum resident set size (KB) = 994044 +[0] The total amount of wall time = 314.155447 +[0] The maximum resident set size (KB) = 992968 Test 089 rap_unified_ugwp_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/rap_lndp_debug -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/rap_lndp_debug +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/rap_lndp_debug Checking test 090 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 = 307.801669 -[0] The maximum resident set size (KB) = 996624 +[0] The total amount of wall time = 306.758984 +[0] The maximum resident set size (KB) = 996448 Test 090 rap_lndp_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/rap_flake_debug -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/rap_flake_debug +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/rap_flake_debug Checking test 091 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 = 304.212169 -[0] The maximum resident set size (KB) = 996616 +[0] The total amount of wall time = 304.741256 +[0] The maximum resident set size (KB) = 992276 Test 091 rap_flake_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/rap_progcld_thompson_debug -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/rap_progcld_thompson_debug +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/rap_progcld_thompson_debug Checking test 092 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 305.284152 -[0] The maximum resident set size (KB) = 993332 +[0] The total amount of wall time = 304.495489 +[0] The maximum resident set size (KB) = 995000 Test 092 rap_progcld_thompson_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/rap_noah_debug -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/rap_noah_debug +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/rap_noah_debug Checking test 093 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 = 302.094315 -[0] The maximum resident set size (KB) = 995120 +[0] The total amount of wall time = 300.961358 +[0] The maximum resident set size (KB) = 999216 Test 093 rap_noah_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/rap_rrtmgp_debug -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/rap_rrtmgp_debug +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/rap_rrtmgp_debug Checking test 094 rap_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 519.317935 -[0] The maximum resident set size (KB) = 1094960 +[0] The total amount of wall time = 517.764592 +[0] The maximum resident set size (KB) = 1100616 Test 094 rap_rrtmgp_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/rap_sfcdiff_debug -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/rap_sfcdiff_debug +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/rap_sfcdiff_debug Checking test 095 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 305.489478 -[0] The maximum resident set size (KB) = 997240 +[0] The total amount of wall time = 306.061700 +[0] The maximum resident set size (KB) = 997016 Test 095 rap_sfcdiff_debug PASS -Test 096 rap_noah_sfcdiff_cires_ugwp_debug FAIL + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/rap_noah_sfcdiff_cires_ugwp_debug +Checking test 096 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 = 506.690620 +[0] The maximum resident set size (KB) = 1000460 + +Test 096 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/rrfs_v1beta_debug -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/rrfs_v1beta_debug +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/rrfs_v1beta_debug Checking test 097 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 303.359668 -[0] The maximum resident set size (KB) = 993980 +[0] The total amount of wall time = 302.762230 +[0] The maximum resident set size (KB) = 996744 Test 097 rrfs_v1beta_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_wam_debug -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/control_wam_debug +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/control_wam_debug Checking test 098 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -[0] The total amount of wall time = 321.351265 -[0] The maximum resident set size (KB) = 255044 +[0] The total amount of wall time = 321.778766 +[0] The maximum resident set size (KB) = 254528 Test 098 control_wam_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/hafs_regional_atm -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/hafs_regional_atm +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/hafs_regional_atm Checking test 099 hafs_regional_atm results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK -[0] The total amount of wall time = 268.436763 -[0] The maximum resident set size (KB) = 706988 +[0] The total amount of wall time = 228.003572 +[0] The maximum resident set size (KB) = 709576 Test 099 hafs_regional_atm PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/hafs_regional_atm_thompson_gfdlsf -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/hafs_regional_atm_thompson_gfdlsf +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/hafs_regional_atm_thompson_gfdlsf Checking test 100 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -[0] The total amount of wall time = 321.702082 -[0] The maximum resident set size (KB) = 1057256 +[0] The total amount of wall time = 274.651353 +[0] The maximum resident set size (KB) = 1063552 Test 100 hafs_regional_atm_thompson_gfdlsf PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/hafs_regional_atm_ocn -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/hafs_regional_atm_ocn +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/hafs_regional_atm_ocn Checking test 101 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -2887,28 +2899,28 @@ Checking test 101 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 = 370.869805 -[0] The maximum resident set size (KB) = 716876 +[0] The total amount of wall time = 375.798321 +[0] The maximum resident set size (KB) = 714852 Test 101 hafs_regional_atm_ocn PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/hafs_regional_atm_wav -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/hafs_regional_atm_wav +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/hafs_regional_atm_wav Checking test 102 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK -[0] The total amount of wall time = 968.512825 -[0] The maximum resident set size (KB) = 712792 +[0] The total amount of wall time = 973.681376 +[0] The maximum resident set size (KB) = 713356 Test 102 hafs_regional_atm_wav PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/hafs_regional_atm_ocn_wav -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/hafs_regional_atm_ocn_wav +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/hafs_regional_atm_ocn_wav Checking test 103 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -2917,60 +2929,60 @@ Checking test 103 hafs_regional_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK -[0] The total amount of wall time = 1096.842513 -[0] The maximum resident set size (KB) = 722100 +[0] The total amount of wall time = 1103.807496 +[0] The maximum resident set size (KB) = 719376 Test 103 hafs_regional_atm_ocn_wav PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/hafs_regional_1nest_atm -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/hafs_regional_1nest_atm +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/hafs_regional_1nest_atm Checking test 104 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc ............ALT CHECK......OK Comparing sfc.nest02.f006.nc ............ALT CHECK......OK -[0] The total amount of wall time = 399.733869 -[0] The maximum resident set size (KB) = 317412 +[0] The total amount of wall time = 401.687025 +[0] The maximum resident set size (KB) = 317216 Test 104 hafs_regional_1nest_atm PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/hafs_regional_telescopic_2nests_atm -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/hafs_regional_telescopic_2nests_atm +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/hafs_regional_telescopic_2nests_atm Checking test 105 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK + Comparing atm.nest02.f006.nc ............ALT CHECK......OK Comparing sfc.nest02.f006.nc .........OK Comparing atm.nest03.f006.nc .........OK - Comparing sfc.nest03.f006.nc ............ALT CHECK......OK + Comparing sfc.nest03.f006.nc .........OK -[0] The total amount of wall time = 409.872592 -[0] The maximum resident set size (KB) = 324160 +[0] The total amount of wall time = 408.606162 +[0] The maximum resident set size (KB) = 332192 Test 105 hafs_regional_telescopic_2nests_atm PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/hafs_global_1nest_atm -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/hafs_global_1nest_atm +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/hafs_global_1nest_atm Checking test 106 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc ............ALT CHECK......OK Comparing sfc.nest02.f006.nc ............ALT CHECK......OK -[0] The total amount of wall time = 184.426614 -[0] The maximum resident set size (KB) = 204884 +[0] The total amount of wall time = 179.314581 +[0] The maximum resident set size (KB) = 205264 Test 106 hafs_global_1nest_atm PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/hafs_global_multiple_4nests_atm -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/hafs_global_multiple_4nests_atm +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/hafs_global_multiple_4nests_atm Checking test 107 hafs_global_multiple_4nests_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK + Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK @@ -2979,16 +2991,16 @@ Checking test 107 hafs_global_multiple_4nests_atm results .... Comparing sfc.nest04.f006.nc .........OK Comparing sfc.nest04.f006.nc .........OK Comparing atm.nest05.f006.nc .........OK - Comparing sfc.nest05.f006.nc ............ALT CHECK......OK + Comparing sfc.nest05.f006.nc .........OK -[0] The total amount of wall time = 551.547505 -[0] The maximum resident set size (KB) = 272412 +[0] The total amount of wall time = 550.246950 +[0] The maximum resident set size (KB) = 254556 Test 107 hafs_global_multiple_4nests_atm PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/hafs_regional_docn -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/hafs_regional_docn +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/hafs_regional_docn Checking test 108 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -2996,133 +3008,133 @@ Checking test 108 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 = 375.668721 -[0] The maximum resident set size (KB) = 714048 +[0] The total amount of wall time = 372.681319 +[0] The maximum resident set size (KB) = 715916 Test 108 hafs_regional_docn PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/hafs_regional_docn_oisst -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/hafs_regional_docn_oisst +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/hafs_regional_docn_oisst Checking test 109 hafs_regional_docn_oisst results .... - Comparing atmf006.nc .........OK + Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -[0] The total amount of wall time = 374.901276 -[0] The maximum resident set size (KB) = 711396 +[0] The total amount of wall time = 370.613175 +[0] The maximum resident set size (KB) = 719376 Test 109 hafs_regional_docn_oisst PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/hafs_regional_datm_cdeps -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/hafs_regional_datm_cdeps +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/hafs_regional_datm_cdeps Checking test 110 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 = 1088.550556 -[0] The maximum resident set size (KB) = 889556 +[0] The total amount of wall time = 1089.905619 +[0] The maximum resident set size (KB) = 890408 Test 110 hafs_regional_datm_cdeps PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/datm_cdeps_control_cfsr -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/datm_cdeps_control_cfsr +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/datm_cdeps_control_cfsr Checking test 111 datm_cdeps_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -[0] The total amount of wall time = 173.638332 -[0] The maximum resident set size (KB) = 720720 +[0] The total amount of wall time = 174.692297 +[0] The maximum resident set size (KB) = 724508 Test 111 datm_cdeps_control_cfsr PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/datm_cdeps_control_cfsr -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/datm_cdeps_restart_cfsr +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/datm_cdeps_restart_cfsr Checking test 112 datm_cdeps_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -[0] The total amount of wall time = 118.441543 -[0] The maximum resident set size (KB) = 719596 +[0] The total amount of wall time = 119.334914 +[0] The maximum resident set size (KB) = 724276 Test 112 datm_cdeps_restart_cfsr PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/datm_cdeps_control_gefs -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/datm_cdeps_control_gefs +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/datm_cdeps_control_gefs Checking test 113 datm_cdeps_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -[0] The total amount of wall time = 170.284481 -[0] The maximum resident set size (KB) = 626656 +[0] The total amount of wall time = 169.831866 +[0] The maximum resident set size (KB) = 627924 Test 113 datm_cdeps_control_gefs PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/datm_cdeps_iau_gefs -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/datm_cdeps_iau_gefs +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/datm_cdeps_iau_gefs Checking test 114 datm_cdeps_iau_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -[0] The total amount of wall time = 169.121811 -[0] The maximum resident set size (KB) = 627240 +[0] The total amount of wall time = 170.802472 +[0] The maximum resident set size (KB) = 627072 Test 114 datm_cdeps_iau_gefs PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/datm_cdeps_stochy_gefs -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/datm_cdeps_stochy_gefs +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/datm_cdeps_stochy_gefs Checking test 115 datm_cdeps_stochy_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -[0] The total amount of wall time = 169.741055 -[0] The maximum resident set size (KB) = 625720 +[0] The total amount of wall time = 170.417478 +[0] The maximum resident set size (KB) = 627080 Test 115 datm_cdeps_stochy_gefs PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/datm_cdeps_bulk_cfsr -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/datm_cdeps_bulk_cfsr +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/datm_cdeps_bulk_cfsr Checking test 116 datm_cdeps_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -[0] The total amount of wall time = 174.417683 -[0] The maximum resident set size (KB) = 723676 +[0] The total amount of wall time = 175.634738 +[0] The maximum resident set size (KB) = 724484 Test 116 datm_cdeps_bulk_cfsr PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/datm_cdeps_bulk_gefs -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/datm_cdeps_bulk_gefs +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/datm_cdeps_bulk_gefs Checking test 117 datm_cdeps_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -[0] The total amount of wall time = 170.035466 -[0] The maximum resident set size (KB) = 625520 +[0] The total amount of wall time = 169.323744 +[0] The maximum resident set size (KB) = 623948 Test 117 datm_cdeps_bulk_gefs PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/datm_cdeps_mx025_cfsr -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/datm_cdeps_mx025_cfsr +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/datm_cdeps_mx025_cfsr Checking test 118 datm_cdeps_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -3131,14 +3143,14 @@ Checking test 118 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 = 348.130384 -[0] The maximum resident set size (KB) = 553028 +[0] The total amount of wall time = 355.368378 +[0] The maximum resident set size (KB) = 555880 Test 118 datm_cdeps_mx025_cfsr PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/datm_cdeps_mx025_gefs -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/datm_cdeps_mx025_gefs +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/datm_cdeps_mx025_gefs Checking test 119 datm_cdeps_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -3147,64 +3159,64 @@ Checking test 119 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-01-43200.nc .........OK -[0] The total amount of wall time = 353.784769 -[0] The maximum resident set size (KB) = 521016 +[0] The total amount of wall time = 348.643969 +[0] The maximum resident set size (KB) = 522344 Test 119 datm_cdeps_mx025_gefs PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/datm_cdeps_control_cfsr -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/datm_cdeps_multiple_files_cfsr +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/datm_cdeps_multiple_files_cfsr Checking test 120 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 = 172.551417 -[0] The maximum resident set size (KB) = 722052 +[0] The total amount of wall time = 174.117756 +[0] The maximum resident set size (KB) = 719676 Test 120 datm_cdeps_multiple_files_cfsr PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/datm_cdeps_3072x1536_cfsr -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/datm_cdeps_3072x1536_cfsr +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/datm_cdeps_3072x1536_cfsr Checking test 121 datm_cdeps_3072x1536_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK -[0] The total amount of wall time = 251.106127 -[0] The maximum resident set size (KB) = 1834192 +[0] The total amount of wall time = 249.909271 +[0] The maximum resident set size (KB) = 1895496 Test 121 datm_cdeps_3072x1536_cfsr PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/datm_cdeps_gfs -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/datm_cdeps_gfs +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/datm_cdeps_gfs Checking test 122 datm_cdeps_gfs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK -[0] The total amount of wall time = 253.175626 -[0] The maximum resident set size (KB) = 1896472 +[0] The total amount of wall time = 254.992054 +[0] The maximum resident set size (KB) = 1833868 Test 122 datm_cdeps_gfs PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/datm_cdeps_debug_cfsr -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/datm_cdeps_debug_cfsr +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/datm_cdeps_debug_cfsr Checking test 123 datm_cdeps_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK -[0] The total amount of wall time = 499.281475 -[0] The maximum resident set size (KB) = 729292 +[0] The total amount of wall time = 501.773907 +[0] The maximum resident set size (KB) = 731712 Test 123 datm_cdeps_debug_cfsr PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_atmwav -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/control_atmwav +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/control_atmwav Checking test 124 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -3248,14 +3260,14 @@ Checking test 124 control_atmwav results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK -[0] The total amount of wall time = 96.120672 -[0] The maximum resident set size (KB) = 474380 +[0] The total amount of wall time = 93.221985 +[0] The maximum resident set size (KB) = 470824 Test 124 control_atmwav PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/control_c384gdas_wav -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_40154/control_c384gdas_wav +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_18301/control_c384gdas_wav Checking test 125 control_c384gdas_wav results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -3301,39 +3313,12 @@ Checking test 125 control_c384gdas_wav results .... Comparing 20210322.030000.restart.gnh_10m .........OK Comparing 20210322.030000.restart.gsh_15m .........OK -[0] The total amount of wall time = 606.091288 -[0] The maximum resident set size (KB) = 990940 +[0] The total amount of wall time = 606.289751 +[0] The maximum resident set size (KB) = 986564 Test 125 control_c384gdas_wav PASS -FAILED TESTS: -Test rap_noah_sfcdiff_cires_ugwp_debug 096 failed in run_test failed - -REGRESSION TEST FAILED -Fri Apr 1 22:24:44 UTC 2022 -Elapsed time: 02h:36m:46s. Have a nice day! - - - -Sat Apr 2 18:16:49 UTC 2022 -Start Regression test - -Compile 001 elapsed time 366 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP_noah,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220401/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_38093/rap_noah_sfcdiff_cires_ugwp_debug -Checking test 001 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 = 507.354815 -[0] The maximum resident set size (KB) = 1000172 - -Test 001 rap_noah_sfcdiff_cires_ugwp_debug PASS - REGRESSION TEST WAS SUCCESSFUL -Sat Apr 2 18:33:11 UTC 2022 -Elapsed time: 00h:16m:24s. Have a nice day! +Mon Apr 4 17:05:00 UTC 2022 +Elapsed time: 01h:36m:30s. Have a nice day! diff --git a/tests/parm/fd_nems.yaml b/tests/parm/fd_nems.yaml index 033dc1d1bd..7a571e8f71 100644 --- a/tests/parm/fd_nems.yaml +++ b/tests/parm/fd_nems.yaml @@ -225,6 +225,30 @@ canonical_units: kg kg -1 description: atmosphere export - specifc humidity height 2m # + - standard_name: canopy_moisture_storage + canonical_units: m + description: canopy moisture content + # + - standard_name: inst_aerodynamic_conductance + canonical_units: m + description: aerodynamic conductance + # + - standard_name: inst_canopy_resistance + canonical_units: s m-1 + description: canopy aerodynamic resistance + # + - standard_name: leaf_area_index + canonical_units: 1 + description: leaf area index + # + - standard_name: temperature_of_soil_layer + canonical_units: K + description: temperature in soil layer + # + - standard_name: height + canonical_units: m + description: orography + # #----------------------------------- # section: sea-ice export #----------------------------------- @@ -722,6 +746,7 @@ - standard_name: lake_fraction canonical_units: 1 - standard_name: ice_fraction_in_atm + alias: sea_ice_area_fraction canonical_units: 1 - standard_name: ocean_fraction canonical_units: 1 @@ -973,3 +998,7 @@ - standard_name: t2m canonical_units: K description: two meter temperature + # + - standard_name: inst_tracer_diag_aod + canonical_units: 1 + description: AOD