From 5094e9870dfa1a189f50b2168fae195ee6c2cb27 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ufuk=20Turun=C3=A7o=C4=9Flu?= Date: Fri, 28 Oct 2022 14:53:26 -0600 Subject: [PATCH] Bring external land component support to UFS (#1443) * update components and add external land component support * use cubed_sphere_grid as output grid * point updated CMEPS fork * switch to another fix for inconsistent land sea mask issue * make grid file configurable for external land Co-authored-by: Ufuk Turuncoglu Co-authored-by: JONG KIM Co-authored-by: Brian Curtis --- .gitmodules | 4 + CDEPS-interface/CDEPS | 2 +- CMEPS-interface/CMEPS | 2 +- CMakeLists.txt | 17 +- FV3 | 2 +- NOAHMP-interface/CMakeLists.txt | 83 + NOAHMP-interface/noahmp | 1 + cmake/configure_apps.cmake | 28 +- driver/UFSDriver.F90 | 11 + tests/RegressionTests_acorn.intel.log | 1895 ++++++++++++---------- tests/RegressionTests_cheyenne.gnu.log | 446 ++--- tests/RegressionTests_cheyenne.intel.log | 1495 +++++++++-------- tests/RegressionTests_hera.gnu.log | 442 ++--- tests/RegressionTests_hera.intel.log | 1533 +++++++++-------- tests/RegressionTests_jet.intel.log | 1666 +++++++++++-------- tests/RegressionTests_wcoss2.intel.log | 1218 +++++++------- tests/default_vars.sh | 2 + tests/fv3_conf/control_run.IN | 6 +- tests/fv3_conf/lnd_datm_cdeps_gswp.IN | 22 + tests/fv3_conf/noahmp_run.IN | 25 + tests/parm/cpld_control.nml.IN | 1 + tests/parm/datm.streams.multi.IN | 61 + tests/parm/fd_nems.yaml | 66 + tests/parm/nems.configure.atm_lnd.IN | 119 ++ tests/rt.conf | 15 + tests/rt.sh | 2 +- tests/rt_utils.sh | 7 + tests/tests/control_p8_atmlnd_sbs | 236 +++ tests/tests/datm_cdeps_lnd_gswp3 | 58 + tests/tests/datm_cdeps_lnd_gswp3_rst | 63 + 30 files changed, 5617 insertions(+), 3911 deletions(-) create mode 100644 NOAHMP-interface/CMakeLists.txt create mode 160000 NOAHMP-interface/noahmp create mode 100644 tests/fv3_conf/lnd_datm_cdeps_gswp.IN create mode 100644 tests/fv3_conf/noahmp_run.IN create mode 100644 tests/parm/datm.streams.multi.IN create mode 100644 tests/parm/nems.configure.atm_lnd.IN create mode 100644 tests/tests/control_p8_atmlnd_sbs create mode 100644 tests/tests/datm_cdeps_lnd_gswp3 create mode 100644 tests/tests/datm_cdeps_lnd_gswp3_rst diff --git a/.gitmodules b/.gitmodules index 250baf7420..a3775fc12d 100644 --- a/.gitmodules +++ b/.gitmodules @@ -42,3 +42,7 @@ path = AQM url = https://github.com/NOAA-EMC/AQM branch = develop +[submodule "NOAHMP"] + path = NOAHMP-interface/noahmp + url = https://github.com/NOAA-EMC/noahmp + branch = develop diff --git a/CDEPS-interface/CDEPS b/CDEPS-interface/CDEPS index edaef5b4e2..530c2624df 160000 --- a/CDEPS-interface/CDEPS +++ b/CDEPS-interface/CDEPS @@ -1 +1 @@ -Subproject commit edaef5b4e2fd11ddb98539286a7e000aaae5a944 +Subproject commit 530c2624df18b2e2b05cf1c639b073479f68f269 diff --git a/CMEPS-interface/CMEPS b/CMEPS-interface/CMEPS index f9f7541a4a..aabe844ed5 160000 --- a/CMEPS-interface/CMEPS +++ b/CMEPS-interface/CMEPS @@ -1 +1 @@ -Subproject commit f9f7541a4a7e7fd6009a3029c883bbbb289d6ef4 +Subproject commit aabe844ed5870d82d8c879590d14a69f06896815 diff --git a/CMakeLists.txt b/CMakeLists.txt index b31fc1044c..c981641b31 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 ATMAQ ATMW S2S S2SA S2SW S2SWA HAFS HAFSW HAFS-ALL NG-GODAS) +list(APPEND VALID_APPS ATM ATMAERO ATMAQ ATMW ATML LND S2S S2SA S2SW S2SWA S2SWAL 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}") @@ -33,6 +33,7 @@ set(WW3 OFF CACHE BOOL "Enable WW3") set(STOCH_PHYS OFF CACHE BOOL "Enable Stochastic Physics") set(CMEPS OFF CACHE BOOL "Enable CMEPS") set(CDEPS OFF CACHE BOOL "Enable CDEPS") +set(NOAHMP OFF CACHE BOOL "Enable NOAHMP") # Configure selected application specific components message("") @@ -50,6 +51,7 @@ message("WW3 .............. ${WW3}") message("STOCH_PHYS ....... ${STOCH_PHYS}") message("CDEPS ............ ${CDEPS}") message("CMEPS ............ ${CMEPS}") +message("NOAHMP ........... ${NOAHMP}") ############################################################################### ### Build Options @@ -211,6 +213,13 @@ if(CDEPS) add_subdirectory(CDEPS-interface) endif() +############################################################################### +### Land Components [NOAHMP] +############################################################################### +if(NOAHMP) + add_subdirectory(NOAHMP-interface) +endif() + ############################################################################### ### UFS Library ############################################################################### @@ -283,6 +292,12 @@ if(CDEPS) target_link_libraries(ufs PUBLIC cdeps::cdeps) endif() +if(NOAHMP) + add_dependencies(ufs noahmp) + list(APPEND _ufs_defs_private FRONT_NOAHMP=lnd_comp_nuopc) + list(APPEND _ufs_libs_public noahmp) +endif() + target_compile_definitions(ufs PRIVATE "${_ufs_defs_private}") target_link_libraries(ufs PUBLIC "${_ufs_libs_public}") diff --git a/FV3 b/FV3 index d38ccafa4c..324591bd28 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit d38ccafa4cfbdc5392dee3bb46f18bd6ce6abf07 +Subproject commit 324591bd2824d869dc7b6a10dcc90db1d5898cd3 diff --git a/NOAHMP-interface/CMakeLists.txt b/NOAHMP-interface/CMakeLists.txt new file mode 100644 index 0000000000..008327d573 --- /dev/null +++ b/NOAHMP-interface/CMakeLists.txt @@ -0,0 +1,83 @@ +#------------------------------------------------------------------------------ +# Add source files +# NUOPC cap +list(APPEND _noahmp_cap_files noahmp/drivers/nuopc/lnd_comp_kind.F90 + noahmp/drivers/nuopc/lnd_comp_types.F90 + noahmp/drivers/nuopc/lnd_comp_shr.F90 + noahmp/drivers/nuopc/lnd_comp_io.F90 + noahmp/drivers/nuopc/lnd_comp_domain.F90 + noahmp/drivers/nuopc/lnd_comp_import_export.F90 + noahmp/drivers/nuopc/lnd_comp_nuopc.F90 + noahmp/drivers/nuopc/lnd_comp_driver.F90) + +# CCPP interface +list(APPEND _noahmp_ccpp_files noahmp/drivers/ccpp/noahmpdrv.F90 + noahmp/drivers/ccpp/sfc_diff.f + noahmp/drivers/ccpp/machine.F + noahmp/drivers/ccpp/noahmp_tables.f90 + noahmp/drivers/ccpp/namelist_soilveg.f + noahmp/drivers/ccpp/set_soilveg.f + noahmp/drivers/ccpp/funcphys.f90 + noahmp/drivers/ccpp/physcons.F90) + +# NoahMP +list(APPEND _noahmp_files noahmp/src/module_sf_noahmplsm.f90 + noahmp/src/module_sf_noahmp_glacier.f90) + +#------------------------------------------------------------------------------ +# Set CCPP flags for C/C++/Fortran preprocessor +add_definitions(-DCCPP) + +#------------------------------------------------------------------------------ +# Set MPI flags for C/C++/Fortran preprocessor +if(MPI) + add_definitions(-DMPI) +endif() + +#------------------------------------------------------------------------------ +# Set flag for 32bit dynamics build +if(32BIT) + message(STATUS "Compile CCPP slow physics with 64-bit precision, fast physics with 32-bit precision") + add_definitions(-DOVERLOAD_R4) + if(CMAKE_Fortran_COMPILER_ID MATCHES "Intel") + set(CMAKE_Fortran_FLAGS_PHYSICS "-real-size 64 -no-prec-div -no-prec-sqrt") + elseif(CMAKE_Fortran_COMPILER_ID MATCHES "GNU") + set(CMAKE_Fortran_FLAGS_PHYSICS "-fdefault-real-8 -fdefault-double-8") + endif() + set(CMAKE_Fortran_FLAGS_DYNAMICS "") +else() + message(STATUS "Compile CCPP physics with 64-bit precision") + remove_definitions(-DOVERLOAD_R8) + remove_definitions(-DOVERLOAD_R4) + set(CMAKE_Fortran_FLAGS_PHYSICS "") + set(CMAKE_Fortran_FLAGS_DYNAMICS "") +endif() + +#------------------------------------------------------------------------------ +# Add model-specific flags for C/C++/Fortran preprocessor +add_definitions(-DMOIST_CAPPA -DUSE_COND -DNEMS_GSM) +add_definitions(-DINTERNAL_FILE_NML) + +#------------------------------------------------------------------------------ +# NOAHMP +add_library(noahmp STATIC ${_noahmp_cap_files} ${_noahmp_ccpp_files} ${_noahmp_files}) +set_target_properties(noahmp PROPERTIES Fortran_MODULE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/mod) +target_include_directories(noahmp PUBLIC $ + $) +target_link_libraries(noahmp PUBLIC esmf fms) + +############################################################################### +### Install +############################################################################### + +install( + TARGETS noahmp + EXPORT noahmp-config + LIBRARY DESTINATION lib + ARCHIVE DESTINATION lib + COMPONENT Library) + +install(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/mod DESTINATION ${CMAKE_INSTALL_PREFIX}/NOAHMP) + +install(EXPORT noahmp-config + DESTINATION lib/cmake) diff --git a/NOAHMP-interface/noahmp b/NOAHMP-interface/noahmp new file mode 160000 index 0000000000..34a52ccb22 --- /dev/null +++ b/NOAHMP-interface/noahmp @@ -0,0 +1 @@ +Subproject commit 34a52ccb22b924b707fe92005e565b745fcaed52 diff --git a/cmake/configure_apps.cmake b/cmake/configure_apps.cmake index 1d433c4f3b..d02ea508e5 100644 --- a/cmake/configure_apps.cmake +++ b/cmake/configure_apps.cmake @@ -13,7 +13,7 @@ ############################################################################### ### Configure Application Components ############################################################################### -if(APP MATCHES "^(ATM|ATMW|ATMAQ)$") +if(APP MATCHES "^(ATM|ATMW|ATMAQ|ATML)$") 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) @@ -23,6 +23,10 @@ if(APP MATCHES "^(ATM|ATMW|ATMAQ)$") elseif(APP MATCHES "ATMAQ") set(AQM ON CACHE BOOL "Enable AQM" FORCE) message("Configuring UFS app in Atmosphere with Air Quality mode") + elseif(APP MATCHES "ATML") + set(CMEPS ON CACHE BOOL "Enable CMEPS" FORCE) + set(NOAHMP ON CACHE BOOL "Enable NOAHMP" FORCE) + message("Configuring UFS app in Atmosphere with Air Quality mode") else() message("Configuring UFS app in Atmosphere Only mode") endif() @@ -38,7 +42,7 @@ if(APP MATCHES "^(NG-GODAS)$") message("Configuring UFS app in (CDEPS) Data Atmosphere mode") endif() -if(APP MATCHES "^(S2S|S2SA|S2SW|S2SWA)$") +if(APP MATCHES "^(S2S|S2SA|S2SW|S2SWA|S2SWAL)$") set(APP_MSG "Configuring UFS app in S2S") set(CMEPS ON CACHE BOOL "Enable CMEPS" FORCE) set(FMS ON CACHE BOOL "Enable FMS" FORCE) @@ -46,17 +50,16 @@ if(APP MATCHES "^(S2S|S2SA|S2SW|S2SWA)$") set(MOM6 ON CACHE BOOL "Enable MOM6" FORCE) set(CICE6 ON CACHE BOOL "Enable CICE6" FORCE) set(STOCH_PHYS ON CACHE BOOL "Enable Stochastic Physics" FORCE) - if(APP MATCHES "^S2SW") + if(APP MATCHES "^(S2SW|S2SWA|S2SWAL)") set(WW3 ON CACHE BOOL "Enable WAVEWATCH III" FORCE) string(CONCAT APP_MSG ${APP_MSG} " with Waves") endif() - if(APP MATCHES "A$") + if(APP MATCHES "^(S2SA|S2SWA)") set(UFS_GOCART ON CACHE BOOL "Enable GOCART" FORCE) - if(WW3) - string(CONCAT APP_MSG ${APP_MSG} " and Aerosols") - else() - string(CONCAT APP_MSG ${APP_MSG} " with Aerosols") - endif() + string(CONCAT APP_MSG ${APP_MSG} " with Aerosols") + endif() + if(APP MATCHES "^S2SWAL") + set(NOAHMP ON CACHE BOOL "Enable NOAHMP" FORCE) endif() message("${APP_MSG} mode") endif() @@ -84,3 +87,10 @@ if(APP MATCHES "^(ATMAERO)$") set(UFS_GOCART ON CACHE BOOL "Enable GOCART" FORCE) message("Configuring UFS app in Atmosphere with Aerosols mode") endif() + +if(APP MATCHES "^(LND)$") + set(CMEPS ON CACHE BOOL "Enable CMEPS" FORCE) + set(CDEPS ON CACHE BOOL "Enable CDEPS" FORCE) + set(NOAHMP ON CACHE BOOL "Enable NOAHMP" FORCE) + set(FMS ON CACHE BOOL "Enable FMS" FORCE) +endif() diff --git a/driver/UFSDriver.F90 b/driver/UFSDriver.F90 index 272e484cee..bdbafd561a 100644 --- a/driver/UFSDriver.F90 +++ b/driver/UFSDriver.F90 @@ -74,6 +74,9 @@ MODULE UFSDriver #ifdef FRONT_NOAH use FRONT_NOAH, only: NOAH_SS => SetServices #endif +#ifdef FRONT_NOAHMP + use FRONT_NOAHMP, only: NOAHMP_SS => SetServices +#endif #ifdef FRONT_LIS use FRONT_LIS, only: LIS_SS => SetServices #endif @@ -447,6 +450,14 @@ subroutine SetModelServices(driver, rc) found_comp = .true. end if #endif +#ifdef FRONT_NOAHMP + if (trim(model) == "noahmp") then + call NUOPC_DriverAddComp(driver, trim(prefix), NOAHMP_SS, & + petList=petList, comp=comp, rc=rc) + if (ChkErr(rc,__LINE__,u_FILE_u)) return + found_comp = .true. + end if +#endif #ifdef FRONT_LIS if (trim(model) == "lis") then !TODO: Remove bail code and pass info and SetVM to DriverAddComp diff --git a/tests/RegressionTests_acorn.intel.log b/tests/RegressionTests_acorn.intel.log index 75e8a449d7..4edcca3098 100644 --- a/tests/RegressionTests_acorn.intel.log +++ b/tests/RegressionTests_acorn.intel.log @@ -1,29 +1,31 @@ -Tue Oct 25 18:06:39 UTC 2022 +Thu Oct 27 14:45:10 UTC 2022 Start Regression test -Compile 001 elapsed time 493 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 483 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 350 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 348 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 005 elapsed time 313 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 341 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 007 elapsed time 315 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 008 elapsed time 281 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 009 elapsed time 577 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 010 elapsed time 149 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 296 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 297 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 245 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 014 elapsed time 150 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 556 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 016 elapsed time 496 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 017 elapsed time 170 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 018 elapsed time 629 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 019 elapsed time 321 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 020 elapsed time 376 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/cpld_control_p8 +Compile 001 elapsed time 666 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 470 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 389 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 501 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 005 elapsed time 1039 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 347 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 705 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 008 elapsed time 799 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 009 elapsed time 658 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 010 elapsed time 154 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 899 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 337 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 424 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 014 elapsed time 256 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 575 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 016 elapsed time 706 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 017 elapsed time 160 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 018 elapsed time 53 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 019 elapsed time 484 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 020 elapsed time 467 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 021 elapsed time 380 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 022 elapsed time 463 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/cpld_control_p8 Checking test 001 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -88,14 +90,14 @@ Checking test 001 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 383.822034 -The maximum resident set size (KB) = 2982992 +The total amount of wall time = 376.105075 +The maximum resident set size (KB) = 2980116 Test 001 cpld_control_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/cpld_restart_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/cpld_restart_p8 Checking test 002 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -148,14 +150,14 @@ Checking test 002 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 227.872968 -The maximum resident set size (KB) = 2867712 +The total amount of wall time = 222.213606 +The maximum resident set size (KB) = 2867232 Test 002 cpld_restart_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/cpld_2threads_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/cpld_2threads_p8 Checking test 003 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -208,14 +210,14 @@ Checking test 003 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 740.286720 -The maximum resident set size (KB) = 3264464 +The total amount of wall time = 737.690400 +The maximum resident set size (KB) = 3265596 Test 003 cpld_2threads_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/cpld_esmfthreads_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/cpld_esmfthreads_p8 Checking test 004 cpld_esmfthreads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -268,14 +270,14 @@ Checking test 004 cpld_esmfthreads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 374.218199 -The maximum resident set size (KB) = 3282044 +The total amount of wall time = 365.683231 +The maximum resident set size (KB) = 3279300 Test 004 cpld_esmfthreads_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/cpld_decomp_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/cpld_decomp_p8 Checking test 005 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -328,14 +330,14 @@ Checking test 005 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 380.799758 -The maximum resident set size (KB) = 2977628 +The total amount of wall time = 368.900149 +The maximum resident set size (KB) = 2977756 Test 005 cpld_decomp_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/cpld_mpi_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/cpld_mpi_p8 Checking test 006 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -388,14 +390,14 @@ Checking test 006 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 318.353976 -The maximum resident set size (KB) = 2914040 +The total amount of wall time = 310.112066 +The maximum resident set size (KB) = 2912172 Test 006 cpld_mpi_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/cpld_control_ciceC_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/cpld_control_ciceC_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/cpld_control_ciceC_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/cpld_control_ciceC_p8 Checking test 007 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -460,14 +462,14 @@ Checking test 007 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 383.989588 -The maximum resident set size (KB) = 2979904 +The total amount of wall time = 377.752473 +The maximum resident set size (KB) = 2981056 Test 007 cpld_control_ciceC_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/cpld_control_c192_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/cpld_control_c192_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/cpld_control_c192_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/cpld_control_c192_p8 Checking test 008 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -520,239 +522,68 @@ Checking test 008 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK -The total amount of wall time = 1139.813881 -The maximum resident set size (KB) = 3119092 +The total amount of wall time = 1133.208143 +The maximum resident set size (KB) = 3125272 Test 008 cpld_control_c192_p8 PASS +Test 009 cpld_restart_c192_p8 FAIL -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/cpld_control_c192_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/cpld_restart_c192_p8 -Checking test 009 cpld_restart_c192_p8 results .... - Comparing sfcf030.tile1.nc .........OK - Comparing sfcf030.tile2.nc .........OK - Comparing sfcf030.tile3.nc .........OK - Comparing sfcf030.tile4.nc .........OK - Comparing sfcf030.tile5.nc .........OK - Comparing sfcf030.tile6.nc .........OK - Comparing atmf030.tile1.nc .........OK - Comparing atmf030.tile2.nc .........OK - Comparing atmf030.tile3.nc .........OK - Comparing atmf030.tile4.nc .........OK - Comparing atmf030.tile5.nc .........OK - Comparing atmf030.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_1200z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-43200.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - Comparing 20210323.120000.out_grd.ww3 .........OK - Comparing 20210323.120000.out_pnt.ww3 .........OK -The total amount of wall time = 674.649896 -The maximum resident set size (KB) = 3045104 - -Test 009 cpld_restart_c192_p8 PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/cpld_bmark_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/cpld_bmark_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/cpld_bmark_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/cpld_bmark_p8 Checking test 010 cpld_bmark_p8 results .... - Comparing sfcf006.nc .........OK - Comparing atmf006.nc .........OK - Comparing GFSFLX.GrbF06 .........OK - Comparing GFSPRS.GrbF06 .........OK - Comparing gocart.inst_aod.20130401_0600z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-01-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - Comparing 20130401.060000.out_pnt.ww3 .........OK - Comparing 20130401.060000.out_grd.ww3 .........OK - -The total amount of wall time = 1446.954771 -The maximum resident set size (KB) = 3878468 - -Test 010 cpld_bmark_p8 PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/cpld_bmark_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/cpld_restart_bmark_p8 -Checking test 011 cpld_restart_bmark_p8 results .... - Comparing sfcf006.nc .........OK - Comparing atmf006.nc .........OK - Comparing GFSFLX.GrbF06 .........OK - Comparing GFSPRS.GrbF06 .........OK - Comparing gocart.inst_aod.20130401_0600z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-01-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - Comparing 20130401.060000.out_pnt.ww3 .........OK - Comparing 20130401.060000.out_grd.ww3 .........OK - -The total amount of wall time = 834.266610 -The maximum resident set size (KB) = 3852532 - -Test 011 cpld_restart_bmark_p8 PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/cpld_bmark_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/cpld_bmark_esmfthreads_p8 -Checking test 012 cpld_bmark_esmfthreads_p8 results .... - Comparing sfcf006.nc .........OK - Comparing atmf006.nc .........OK - Comparing GFSFLX.GrbF06 .........OK - Comparing GFSPRS.GrbF06 .........OK - Comparing gocart.inst_aod.20130401_0600z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-01-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - Comparing 20130401.060000.out_pnt.ww3 .........OK - Comparing 20130401.060000.out_grd.ww3 .........OK - -The total amount of wall time = 922.475507 -The maximum resident set size (KB) = 3914988 - -Test 012 cpld_bmark_esmfthreads_p8 PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/cpld_control_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/cpld_control_noaero_p8 + Comparing sfcf006.nc ............MISSING file + Comparing atmf006.nc ............MISSING file + Comparing GFSFLX.GrbF06 ............MISSING file + Comparing GFSPRS.GrbF06 ............MISSING file + Comparing gocart.inst_aod.20130401_0600z.nc4 ............MISSING file + Comparing RESTART/coupler.res ............MISSING file + Comparing RESTART/fv_core.res.nc ............MISSING file + Comparing RESTART/fv_core.res.tile1.nc ............MISSING file + Comparing RESTART/fv_core.res.tile2.nc ............MISSING file + Comparing RESTART/fv_core.res.tile3.nc ............MISSING file + Comparing RESTART/fv_core.res.tile4.nc ............MISSING file + Comparing RESTART/fv_core.res.tile5.nc ............MISSING file + Comparing RESTART/fv_core.res.tile6.nc ............MISSING file + Comparing RESTART/fv_srf_wnd.res.tile1.nc ............MISSING file + Comparing RESTART/fv_srf_wnd.res.tile2.nc ............MISSING file + Comparing RESTART/fv_srf_wnd.res.tile3.nc ............MISSING file + Comparing RESTART/fv_srf_wnd.res.tile4.nc ............MISSING file + Comparing RESTART/fv_srf_wnd.res.tile5.nc ............MISSING file + Comparing RESTART/fv_srf_wnd.res.tile6.nc ............MISSING file + Comparing RESTART/fv_tracer.res.tile1.nc ............MISSING file + Comparing RESTART/fv_tracer.res.tile2.nc ............MISSING file + Comparing RESTART/fv_tracer.res.tile3.nc ............MISSING file + Comparing RESTART/fv_tracer.res.tile4.nc ............MISSING file + Comparing RESTART/fv_tracer.res.tile5.nc ............MISSING file + Comparing RESTART/fv_tracer.res.tile6.nc ............MISSING file + Comparing RESTART/phy_data.tile1.nc ............MISSING file + Comparing RESTART/phy_data.tile2.nc ............MISSING file + Comparing RESTART/phy_data.tile3.nc ............MISSING file + Comparing RESTART/phy_data.tile4.nc ............MISSING file + Comparing RESTART/phy_data.tile5.nc ............MISSING file + Comparing RESTART/phy_data.tile6.nc ............MISSING file + Comparing RESTART/sfc_data.tile1.nc ............MISSING file + Comparing RESTART/sfc_data.tile2.nc ............MISSING file + Comparing RESTART/sfc_data.tile3.nc ............MISSING file + Comparing RESTART/sfc_data.tile4.nc ............MISSING file + Comparing RESTART/sfc_data.tile5.nc ............MISSING file + Comparing RESTART/sfc_data.tile6.nc ............MISSING file + Comparing RESTART/MOM.res.nc ............MISSING file + Comparing RESTART/MOM.res_1.nc ............MISSING file + Comparing RESTART/MOM.res_2.nc ............MISSING file + Comparing RESTART/MOM.res_3.nc ............MISSING file + Comparing RESTART/iced.2013-04-01-21600.nc ............MISSING file + Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc ............MISSING file + Comparing 20130401.060000.out_pnt.ww3 ............MISSING file + Comparing 20130401.060000.out_grd.ww3 ............MISSING file + +Test 012 cpld_bmark_esmfthreads_p8 FAIL + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/cpld_control_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/cpld_control_noaero_p8 Checking test 013 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -816,14 +647,14 @@ Checking test 013 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 255.519656 -The maximum resident set size (KB) = 1576804 +The total amount of wall time = 251.250683 +The maximum resident set size (KB) = 1571428 Test 013 cpld_control_noaero_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/cpld_control_c96_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/cpld_control_nowave_noaero_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/cpld_control_c96_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/cpld_control_nowave_noaero_p8 Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -885,14 +716,14 @@ Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 293.094408 -The maximum resident set size (KB) = 1622612 +The total amount of wall time = 285.250642 +The maximum resident set size (KB) = 1621076 Test 014 cpld_control_nowave_noaero_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/cpld_control_noaero_p8_agrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/cpld_control_noaero_p8_agrid +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/cpld_control_noaero_p8_agrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/cpld_control_noaero_p8_agrid Checking test 015 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -954,14 +785,14 @@ Checking test 015 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 301.879019 -The maximum resident set size (KB) = 1621892 +The total amount of wall time = 293.018195 +The maximum resident set size (KB) = 1620432 Test 015 cpld_control_noaero_p8_agrid PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/cpld_control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/cpld_control_c48 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/cpld_control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/cpld_control_c48 Checking test 016 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1011,14 +842,14 @@ Checking test 016 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 431.984482 -The maximum resident set size (KB) = 2628284 +The total amount of wall time = 425.695057 +The maximum resident set size (KB) = 2625300 Test 016 cpld_control_c48 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/cpld_warmstart_c48 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/cpld_warmstart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/cpld_warmstart_c48 Checking test 017 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1068,14 +899,14 @@ Checking test 017 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 121.228954 -The maximum resident set size (KB) = 2648564 +The total amount of wall time = 114.501607 +The maximum resident set size (KB) = 2646812 Test 017 cpld_warmstart_c48 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/cpld_restart_c48 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/cpld_warmstart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/cpld_restart_c48 Checking test 018 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1125,14 +956,14 @@ Checking test 018 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 66.179756 -The maximum resident set size (KB) = 2055244 +The total amount of wall time = 59.970564 +The maximum resident set size (KB) = 2059808 Test 018 cpld_restart_c48 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/control +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/control Checking test 019 control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1179,14 +1010,14 @@ Checking test 019 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 134.140240 -The maximum resident set size (KB) = 511928 +The total amount of wall time = 133.473189 +The maximum resident set size (KB) = 512612 Test 019 control PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/control_decomp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/control_decomp Checking test 020 control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1229,14 +1060,14 @@ Checking test 020 control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 135.429079 -The maximum resident set size (KB) = 514888 +The total amount of wall time = 135.356158 +The maximum resident set size (KB) = 514832 Test 020 control_decomp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/control_2dwrtdecomp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/control_2dwrtdecomp Checking test 021 control_2dwrtdecomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1247,14 +1078,14 @@ Checking test 021 control_2dwrtdecomp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 130.684201 -The maximum resident set size (KB) = 515920 +The total amount of wall time = 130.895162 +The maximum resident set size (KB) = 516764 Test 021 control_2dwrtdecomp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/control_2threads +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/control_2threads Checking test 022 control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1297,14 +1128,14 @@ Checking test 022 control_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 287.123615 -The maximum resident set size (KB) = 562076 +The total amount of wall time = 285.799911 +The maximum resident set size (KB) = 563212 Test 022 control_2threads PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/control_restart +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/control_restart Checking test 023 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1343,14 +1174,14 @@ Checking test 023 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 67.722803 -The maximum resident set size (KB) = 254296 +The total amount of wall time = 68.757844 +The maximum resident set size (KB) = 255040 Test 023 control_restart PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/control_fhzero +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/control_fhzero Checking test 024 control_fhzero results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -1393,14 +1224,14 @@ Checking test 024 control_fhzero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 125.652278 -The maximum resident set size (KB) = 515688 +The total amount of wall time = 128.026207 +The maximum resident set size (KB) = 511904 Test 024 control_fhzero PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/control_CubedSphereGrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/control_CubedSphereGrid +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/control_CubedSphereGrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/control_CubedSphereGrid Checking test 025 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1427,14 +1258,14 @@ Checking test 025 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 126.510411 -The maximum resident set size (KB) = 513884 +The total amount of wall time = 128.033701 +The maximum resident set size (KB) = 514040 Test 025 control_CubedSphereGrid PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/control_latlon -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/control_latlon +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/control_latlon +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/control_latlon Checking test 026 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1445,14 +1276,14 @@ Checking test 026 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 129.424206 -The maximum resident set size (KB) = 512500 +The total amount of wall time = 130.363963 +The maximum resident set size (KB) = 513000 Test 026 control_latlon PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/control_wrtGauss_netcdf_parallel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/control_wrtGauss_netcdf_parallel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/control_wrtGauss_netcdf_parallel Checking test 027 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1463,14 +1294,14 @@ Checking test 027 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 132.138555 -The maximum resident set size (KB) = 512712 +The total amount of wall time = 131.719947 +The maximum resident set size (KB) = 516792 Test 027 control_wrtGauss_netcdf_parallel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/control_c48 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/control_c48 Checking test 028 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1509,14 +1340,14 @@ Checking test 028 control_c48 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 325.774408 -The maximum resident set size (KB) = 667588 +The total amount of wall time = 324.687310 +The maximum resident set size (KB) = 666024 Test 028 control_c48 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/control_c192 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/control_c192 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/control_c192 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/control_c192 Checking test 029 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1527,14 +1358,14 @@ Checking test 029 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 531.374003 -The maximum resident set size (KB) = 613616 +The total amount of wall time = 526.725330 +The maximum resident set size (KB) = 610804 Test 029 control_c192 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/control_c384 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/control_c384 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/control_c384 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/control_c384 Checking test 030 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1545,14 +1376,14 @@ Checking test 030 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 1246.104518 -The maximum resident set size (KB) = 880608 +The total amount of wall time = 1249.052476 +The maximum resident set size (KB) = 877776 Test 030 control_c384 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/control_c384gdas -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/control_c384gdas +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/control_c384gdas +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/control_c384gdas Checking test 031 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1595,14 +1426,14 @@ Checking test 031 control_c384gdas results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 1115.372362 -The maximum resident set size (KB) = 1016828 +The total amount of wall time = 1087.911195 +The maximum resident set size (KB) = 1016032 Test 031 control_c384gdas PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/control_c384_progsigma -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/control_c384_progsigma +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/control_c384_progsigma +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/control_c384_progsigma Checking test 032 control_c384_progsigma results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1613,14 +1444,14 @@ Checking test 032 control_c384_progsigma results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 1269.152706 -The maximum resident set size (KB) = 898156 +The total amount of wall time = 1269.377266 +The maximum resident set size (KB) = 900552 Test 032 control_c384_progsigma PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/control_stochy +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/control_stochy +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/control_stochy Checking test 033 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1631,28 +1462,28 @@ Checking test 033 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 89.299594 -The maximum resident set size (KB) = 526152 +The total amount of wall time = 89.732454 +The maximum resident set size (KB) = 523340 Test 033 control_stochy PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/control_stochy_restart +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/control_stochy +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/control_stochy_restart Checking test 034 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 45.935226 -The maximum resident set size (KB) = 288680 +The total amount of wall time = 46.145012 +The maximum resident set size (KB) = 288004 Test 034 control_stochy_restart PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/control_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/control_lndp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/control_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/control_lndp Checking test 035 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1663,14 +1494,14 @@ Checking test 035 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 80.926907 -The maximum resident set size (KB) = 518888 +The total amount of wall time = 80.960851 +The maximum resident set size (KB) = 520208 Test 035 control_lndp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/control_iovr4 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/control_iovr4 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/control_iovr4 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/control_iovr4 Checking test 036 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1685,14 +1516,14 @@ Checking test 036 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 133.746029 -The maximum resident set size (KB) = 516716 +The total amount of wall time = 133.420679 +The maximum resident set size (KB) = 513368 Test 036 control_iovr4 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/control_iovr5 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/control_iovr5 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/control_iovr5 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/control_iovr5 Checking test 037 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1707,14 +1538,14 @@ Checking test 037 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 132.936525 -The maximum resident set size (KB) = 515144 +The total amount of wall time = 133.934087 +The maximum resident set size (KB) = 517240 Test 037 control_iovr5 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/control_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/control_p8 Checking test 038 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1761,14 +1592,14 @@ Checking test 038 control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 175.088312 -The maximum resident set size (KB) = 1485420 +The total amount of wall time = 169.693351 +The maximum resident set size (KB) = 1482760 Test 038 control_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/control_p8_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/control_p8_lndp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/control_p8_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/control_p8_lndp Checking test 039 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1787,14 +1618,14 @@ Checking test 039 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -The total amount of wall time = 318.405386 -The maximum resident set size (KB) = 1485016 +The total amount of wall time = 312.520297 +The maximum resident set size (KB) = 1490592 Test 039 control_p8_lndp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/control_restart_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/control_restart_p8 Checking test 040 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1833,14 +1664,14 @@ Checking test 040 control_restart_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 96.486800 -The maximum resident set size (KB) = 645908 +The total amount of wall time = 89.852564 +The maximum resident set size (KB) = 644192 Test 040 control_restart_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/control_decomp_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/control_decomp_p8 Checking test 041 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1883,14 +1714,14 @@ Checking test 041 control_decomp_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 178.083356 -The maximum resident set size (KB) = 1477796 +The total amount of wall time = 173.046603 +The maximum resident set size (KB) = 1480404 Test 041 control_decomp_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/control_2threads_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/control_2threads_p8 Checking test 042 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1933,14 +1764,14 @@ Checking test 042 control_2threads_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 351.603564 -The maximum resident set size (KB) = 1570200 +The total amount of wall time = 349.690133 +The maximum resident set size (KB) = 1563184 Test 042 control_2threads_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/control_p8_rrtmgp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/control_p8_rrtmgp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/control_p8_rrtmgp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/control_p8_rrtmgp Checking test 043 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1987,14 +1818,14 @@ Checking test 043 control_p8_rrtmgp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 254.158457 -The maximum resident set size (KB) = 1603584 +The total amount of wall time = 248.708094 +The maximum resident set size (KB) = 1598648 Test 043 control_p8_rrtmgp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/merra2_thompson -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/merra2_thompson +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/merra2_thompson +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/merra2_thompson Checking test 044 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2041,14 +1872,14 @@ Checking test 044 merra2_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 180.035801 -The maximum resident set size (KB) = 1484612 +The total amount of wall time = 175.546316 +The maximum resident set size (KB) = 1497952 Test 044 merra2_thompson PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/fv3_regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/regional_control +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/fv3_regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/regional_control Checking test 045 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -2059,28 +1890,28 @@ Checking test 045 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -The total amount of wall time = 308.828094 -The maximum resident set size (KB) = 599468 +The total amount of wall time = 307.888848 +The maximum resident set size (KB) = 595852 Test 045 regional_control PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/fv3_regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/regional_restart +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/fv3_regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/regional_restart Checking test 046 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 = 171.175729 -The maximum resident set size (KB) = 595732 +The total amount of wall time = 166.893872 +The maximum resident set size (KB) = 594740 Test 046 regional_restart PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/fv3_regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/regional_control_2dwrtdecomp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/fv3_regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/regional_control_2dwrtdecomp Checking test 047 regional_control_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -2091,14 +1922,14 @@ Checking test 047 regional_control_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -The total amount of wall time = 308.064124 -The maximum resident set size (KB) = 596148 +The total amount of wall time = 308.589470 +The maximum resident set size (KB) = 595320 Test 047 regional_control_2dwrtdecomp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/fv3_regional_noquilt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/regional_noquilt +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/fv3_regional_noquilt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/regional_noquilt Checking test 048 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2106,14 +1937,14 @@ Checking test 048 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 = 325.971790 -The maximum resident set size (KB) = 588340 +The total amount of wall time = 324.377721 +The maximum resident set size (KB) = 590396 Test 048 regional_noquilt PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/fv3_regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/regional_2threads +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/fv3_regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/regional_2threads Checking test 049 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -2124,14 +1955,14 @@ Checking test 049 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -The total amount of wall time = 428.414897 -The maximum resident set size (KB) = 646652 +The total amount of wall time = 425.406408 +The maximum resident set size (KB) = 649140 Test 049 regional_2threads PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/fv3_regional_3km -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/regional_3km +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/fv3_regional_3km +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/regional_3km Checking test 050 regional_3km results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2142,14 +1973,14 @@ Checking test 050 regional_3km results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 252.002045 -The maximum resident set size (KB) = 642864 +The total amount of wall time = 250.979305 +The maximum resident set size (KB) = 643088 Test 050 regional_3km PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/fv3_regional_3km -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/regional_3km_decomp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/fv3_regional_3km +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/regional_3km_decomp Checking test 051 regional_3km_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2160,14 +1991,14 @@ Checking test 051 regional_3km_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 266.891070 -The maximum resident set size (KB) = 653804 +The total amount of wall time = 263.090500 +The maximum resident set size (KB) = 657780 Test 051 regional_3km_decomp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/rap_control +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/rap_control Checking test 052 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2214,14 +2045,14 @@ Checking test 052 rap_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 398.787626 -The maximum resident set size (KB) = 889772 +The total amount of wall time = 401.170604 +The maximum resident set size (KB) = 891344 Test 052 rap_control PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_rrtmgp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/rap_rrtmgp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_rrtmgp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/rap_rrtmgp Checking test 053 rap_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2268,14 +2099,14 @@ Checking test 053 rap_rrtmgp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 477.826059 -The maximum resident set size (KB) = 1007580 +The total amount of wall time = 475.979271 +The maximum resident set size (KB) = 1007896 Test 053 rap_rrtmgp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/regional_spp_sppt_shum_skeb -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/regional_spp_sppt_shum_skeb +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/regional_spp_sppt_shum_skeb +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/regional_spp_sppt_shum_skeb Checking test 054 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2286,14 +2117,14 @@ Checking test 054 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 543.486973 -The maximum resident set size (KB) = 977716 +The total amount of wall time = 536.736136 +The maximum resident set size (KB) = 974712 Test 054 regional_spp_sppt_shum_skeb PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/rap_decomp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/rap_decomp Checking test 055 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2340,14 +2171,14 @@ Checking test 055 rap_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 416.206084 -The maximum resident set size (KB) = 887732 +The total amount of wall time = 413.831678 +The maximum resident set size (KB) = 889568 Test 055 rap_decomp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/rap_2threads +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/rap_2threads Checking test 056 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2394,14 +2225,14 @@ Checking test 056 rap_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 882.653331 -The maximum resident set size (KB) = 949360 +The total amount of wall time = 878.001788 +The maximum resident set size (KB) = 950444 Test 056 rap_2threads PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/rap_restart +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/rap_restart Checking test 057 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2440,14 +2271,14 @@ Checking test 057 rap_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 204.504199 -The maximum resident set size (KB) = 635528 +The total amount of wall time = 200.492335 +The maximum resident set size (KB) = 634484 Test 057 rap_restart PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/rap_sfcdiff +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/rap_sfcdiff Checking test 058 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2494,14 +2325,14 @@ Checking test 058 rap_sfcdiff results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 392.241673 -The maximum resident set size (KB) = 890504 +The total amount of wall time = 399.480742 +The maximum resident set size (KB) = 889432 Test 058 rap_sfcdiff PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/rap_sfcdiff_decomp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/rap_sfcdiff_decomp Checking test 059 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2548,14 +2379,14 @@ Checking test 059 rap_sfcdiff_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 418.123649 -The maximum resident set size (KB) = 891200 +The total amount of wall time = 418.179349 +The maximum resident set size (KB) = 889408 Test 059 rap_sfcdiff_decomp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/rap_sfcdiff_restart +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/rap_sfcdiff_restart Checking test 060 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2594,14 +2425,14 @@ Checking test 060 rap_sfcdiff_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 294.603502 -The maximum resident set size (KB) = 638088 +The total amount of wall time = 292.862889 +The maximum resident set size (KB) = 629372 Test 060 rap_sfcdiff_restart PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/hrrr_control +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/hrrr_control Checking test 061 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2648,14 +2479,14 @@ Checking test 061 hrrr_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 381.975457 -The maximum resident set size (KB) = 886400 +The total amount of wall time = 383.728390 +The maximum resident set size (KB) = 886560 Test 061 hrrr_control PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/hrrr_control_decomp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/hrrr_control_decomp Checking test 062 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2702,14 +2533,14 @@ Checking test 062 hrrr_control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 398.025286 -The maximum resident set size (KB) = 887884 +The total amount of wall time = 398.513717 +The maximum resident set size (KB) = 887296 Test 062 hrrr_control_decomp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/hrrr_control_2threads +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/hrrr_control_2threads Checking test 063 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2756,14 +2587,14 @@ Checking test 063 hrrr_control_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 843.669101 -The maximum resident set size (KB) = 945344 +The total amount of wall time = 844.104829 +The maximum resident set size (KB) = 944132 Test 063 hrrr_control_2threads PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/hrrr_control_restart +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/hrrr_control_restart Checking test 064 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2802,14 +2633,14 @@ Checking test 064 hrrr_control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 283.300474 -The maximum resident set size (KB) = 633348 +The total amount of wall time = 282.183318 +The maximum resident set size (KB) = 630012 Test 064 hrrr_control_restart PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/rrfs_v1beta -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/rrfs_v1beta +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/rrfs_v1beta +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/rrfs_v1beta Checking test 065 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2856,14 +2687,14 @@ Checking test 065 rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 394.037593 -The maximum resident set size (KB) = 884136 +The total amount of wall time = 394.164360 +The maximum resident set size (KB) = 880224 Test 065 rrfs_v1beta PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/rrfs_v1nssl -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/rrfs_v1nssl +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/rrfs_v1nssl +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/rrfs_v1nssl Checking test 066 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2878,14 +2709,14 @@ Checking test 066 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 458.299863 -The maximum resident set size (KB) = 575676 +The total amount of wall time = 457.337010 +The maximum resident set size (KB) = 572760 Test 066 rrfs_v1nssl PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/rrfs_v1nssl_nohailnoccn +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/rrfs_v1nssl_nohailnoccn Checking test 067 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2900,14 +2731,14 @@ Checking test 067 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 447.411339 -The maximum resident set size (KB) = 567164 +The total amount of wall time = 449.281697 +The maximum resident set size (KB) = 564212 Test 067 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/rrfs_conus13km_hrrr_warm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/rrfs_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/rrfs_conus13km_hrrr_warm Checking test 068 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2916,14 +2747,14 @@ Checking test 068 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 113.551340 -The maximum resident set size (KB) = 763336 +The total amount of wall time = 110.755785 +The maximum resident set size (KB) = 757996 Test 068 rrfs_conus13km_hrrr_warm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/rrfs_smoke_conus13km_hrrr_warm Checking test 069 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2932,14 +2763,14 @@ Checking test 069 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 126.312228 -The maximum resident set size (KB) = 777208 +The total amount of wall time = 122.985824 +The maximum resident set size (KB) = 773772 Test 069 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/rrfs_conus13km_radar_tten_warm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/rrfs_conus13km_radar_tten_warm Checking test 070 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2948,14 +2779,14 @@ Checking test 070 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 115.516822 -The maximum resident set size (KB) = 763912 +The total amount of wall time = 112.487896 +The maximum resident set size (KB) = 766616 Test 070 rrfs_conus13km_radar_tten_warm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/rrfs_conus13km_hrrr_warm_2threads +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/rrfs_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/rrfs_conus13km_hrrr_warm_2threads Checking test 071 rrfs_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2964,14 +2795,14 @@ Checking test 071 rrfs_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 155.290473 -The maximum resident set size (KB) = 756108 +The total amount of wall time = 151.802012 +The maximum resident set size (KB) = 756944 Test 071 rrfs_conus13km_hrrr_warm_2threads PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/rrfs_conus13km_radar_tten_warm_2threads +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/rrfs_conus13km_radar_tten_warm_2threads Checking test 072 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2980,14 +2811,14 @@ Checking test 072 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 158.335393 -The maximum resident set size (KB) = 756108 +The total amount of wall time = 152.857462 +The maximum resident set size (KB) = 761156 Test 072 rrfs_conus13km_radar_tten_warm_2threads PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/control_csawmg -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/control_csawmg +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/control_csawmg +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/control_csawmg Checking test 073 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2998,14 +2829,14 @@ Checking test 073 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 344.175921 -The maximum resident set size (KB) = 579320 +The total amount of wall time = 338.502766 +The maximum resident set size (KB) = 582452 Test 073 control_csawmg PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/control_csawmgt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/control_csawmgt +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/control_csawmgt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/control_csawmgt Checking test 074 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3016,14 +2847,14 @@ Checking test 074 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 343.010913 -The maximum resident set size (KB) = 584360 +The total amount of wall time = 335.652676 +The maximum resident set size (KB) = 582808 Test 074 control_csawmgt PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/control_ras -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/control_ras +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/control_ras +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/control_ras Checking test 075 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3034,82 +2865,82 @@ Checking test 075 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 178.363820 -The maximum resident set size (KB) = 546196 +The total amount of wall time = 179.108967 +The maximum resident set size (KB) = 549480 Test 075 control_ras PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/control_wam -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/control_wam +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/control_wam +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/control_wam Checking test 076 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 113.105373 -The maximum resident set size (KB) = 323720 +The total amount of wall time = 113.201489 +The maximum resident set size (KB) = 263240 Test 076 control_wam PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/rrfs_conus13km_hrrr_warm_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/rrfs_conus13km_hrrr_warm_debug Checking test 077 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 777.223800 -The maximum resident set size (KB) = 787044 +The total amount of wall time = 776.422800 +The maximum resident set size (KB) = 790664 Test 077 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/rrfs_conus13km_radar_tten_warm_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/rrfs_conus13km_radar_tten_warm_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/rrfs_conus13km_radar_tten_warm_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/rrfs_conus13km_radar_tten_warm_debug Checking test 078 rrfs_conus13km_radar_tten_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 779.354174 -The maximum resident set size (KB) = 792236 +The total amount of wall time = 774.212237 +The maximum resident set size (KB) = 792256 Test 078 rrfs_conus13km_radar_tten_warm_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/control_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/control_debug Checking test 079 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 = 156.559287 -The maximum resident set size (KB) = 675668 +The total amount of wall time = 156.217427 +The maximum resident set size (KB) = 675548 Test 079 control_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/control_2threads_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/control_2threads_debug Checking test 080 control_2threads_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 400.273359 -The maximum resident set size (KB) = 727468 +The total amount of wall time = 400.042505 +The maximum resident set size (KB) = 729432 Test 080 control_2threads_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/control_CubedSphereGrid_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/control_CubedSphereGrid_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/control_CubedSphereGrid_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/control_CubedSphereGrid_debug Checking test 081 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3136,348 +2967,348 @@ Checking test 081 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 165.973644 -The maximum resident set size (KB) = 672340 +The total amount of wall time = 166.590625 +The maximum resident set size (KB) = 675920 Test 081 control_CubedSphereGrid_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/control_wrtGauss_netcdf_parallel_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/control_wrtGauss_netcdf_parallel_debug Checking test 082 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 = 157.738075 -The maximum resident set size (KB) = 674516 +The total amount of wall time = 159.756698 +The maximum resident set size (KB) = 676976 Test 082 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/control_stochy_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/control_stochy_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/control_stochy_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/control_stochy_debug Checking test 083 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 = 178.354247 -The maximum resident set size (KB) = 681456 +The total amount of wall time = 179.351516 +The maximum resident set size (KB) = 683460 Test 083 control_stochy_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/control_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/control_lndp_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/control_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/control_lndp_debug Checking test 084 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 = 160.360503 -The maximum resident set size (KB) = 681000 +The total amount of wall time = 160.892544 +The maximum resident set size (KB) = 680300 Test 084 control_lndp_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/control_csawmg_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/control_csawmg_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/control_csawmg_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/control_csawmg_debug Checking test 085 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 = 256.981832 -The maximum resident set size (KB) = 717032 +The total amount of wall time = 251.869500 +The maximum resident set size (KB) = 719268 Test 085 control_csawmg_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/control_csawmgt_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/control_csawmgt_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/control_csawmgt_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/control_csawmgt_debug Checking test 086 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 = 252.765861 -The maximum resident set size (KB) = 718632 +The total amount of wall time = 246.425035 +The maximum resident set size (KB) = 716304 Test 086 control_csawmgt_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/control_ras_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/control_ras_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/control_ras_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/control_ras_debug Checking test 087 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 = 161.672929 -The maximum resident set size (KB) = 690344 +The total amount of wall time = 162.500974 +The maximum resident set size (KB) = 689224 Test 087 control_ras_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/control_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/control_diag_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/control_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/control_diag_debug Checking test 088 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 = 162.907136 -The maximum resident set size (KB) = 733212 +The total amount of wall time = 163.086098 +The maximum resident set size (KB) = 733056 Test 088 control_diag_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/control_debug_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/control_debug_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/control_debug_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/control_debug_p8 Checking test 089 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 = 186.012679 -The maximum resident set size (KB) = 1494708 +The total amount of wall time = 179.549919 +The maximum resident set size (KB) = 1503520 Test 089 control_debug_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/fv3_regional_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/regional_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/fv3_regional_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/regional_debug Checking test 090 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 = 258.824131 -The maximum resident set size (KB) = 621808 +The total amount of wall time = 259.621742 +The maximum resident set size (KB) = 623488 Test 090 regional_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/rap_control_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/rap_control_debug Checking test 091 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 = 296.247198 -The maximum resident set size (KB) = 1053124 +The total amount of wall time = 295.012715 +The maximum resident set size (KB) = 1048000 Test 091 rap_control_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/hrrr_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/hrrr_control_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/hrrr_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/hrrr_control_debug Checking test 092 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 291.163299 -The maximum resident set size (KB) = 1047836 +The total amount of wall time = 290.920615 +The maximum resident set size (KB) = 1046452 Test 092 hrrr_control_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/rap_unified_drag_suite_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/rap_unified_drag_suite_debug Checking test 093 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 = 298.526713 -The maximum resident set size (KB) = 1047816 +The total amount of wall time = 296.048774 +The maximum resident set size (KB) = 1053368 Test 093 rap_unified_drag_suite_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/rap_diag_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/rap_diag_debug Checking test 094 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 = 308.864316 -The maximum resident set size (KB) = 1133016 +The total amount of wall time = 310.976279 +The maximum resident set size (KB) = 1132044 Test 094 rap_diag_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/rap_cires_ugwp_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/rap_cires_ugwp_debug Checking test 095 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 = 302.650148 -The maximum resident set size (KB) = 1051904 +The total amount of wall time = 302.041120 +The maximum resident set size (KB) = 1052020 Test 095 rap_cires_ugwp_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/rap_unified_ugwp_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/rap_unified_ugwp_debug Checking test 096 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 = 302.783594 -The maximum resident set size (KB) = 1052584 +The total amount of wall time = 302.623620 +The maximum resident set size (KB) = 1047916 Test 096 rap_unified_ugwp_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/rap_lndp_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/rap_lndp_debug Checking test 097 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 = 301.607049 -The maximum resident set size (KB) = 1052020 +The total amount of wall time = 298.918799 +The maximum resident set size (KB) = 1049544 Test 097 rap_lndp_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_flake_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/rap_flake_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_flake_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/rap_flake_debug Checking test 098 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 = 299.271366 -The maximum resident set size (KB) = 1048052 +The total amount of wall time = 296.360232 +The maximum resident set size (KB) = 1046836 Test 098 rap_flake_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_progcld_thompson_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/rap_progcld_thompson_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_progcld_thompson_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/rap_progcld_thompson_debug Checking test 099 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 296.402701 -The maximum resident set size (KB) = 1049872 +The total amount of wall time = 297.113058 +The maximum resident set size (KB) = 1053392 Test 099 rap_progcld_thompson_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_noah_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/rap_noah_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_noah_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/rap_noah_debug Checking test 100 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 = 291.906110 -The maximum resident set size (KB) = 1046848 +The total amount of wall time = 290.703166 +The maximum resident set size (KB) = 1046684 Test 100 rap_noah_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_rrtmgp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/rap_rrtmgp_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_rrtmgp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/rap_rrtmgp_debug Checking test 101 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 = 499.333862 -The maximum resident set size (KB) = 1166332 +The total amount of wall time = 496.451982 +The maximum resident set size (KB) = 1167984 Test 101 rap_rrtmgp_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_sfcdiff_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/rap_sfcdiff_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_sfcdiff_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/rap_sfcdiff_debug Checking test 102 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 300.219299 -The maximum resident set size (KB) = 1047360 +The total amount of wall time = 295.792805 +The maximum resident set size (KB) = 1053592 Test 102 rap_sfcdiff_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/rap_noah_sfcdiff_cires_ugwp_debug Checking test 103 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 = 485.717391 -The maximum resident set size (KB) = 1048564 +The total amount of wall time = 484.096782 +The maximum resident set size (KB) = 1049344 Test 103 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/rrfs_v1beta_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/rrfs_v1beta_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/rrfs_v1beta_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/rrfs_v1beta_debug Checking test 104 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 = 291.443334 -The maximum resident set size (KB) = 1044764 +The total amount of wall time = 290.902997 +The maximum resident set size (KB) = 1044220 Test 104 rrfs_v1beta_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/control_wam_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/control_wam_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/control_wam_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/control_wam_debug Checking test 105 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -The total amount of wall time = 295.753025 -The maximum resident set size (KB) = 323144 +The total amount of wall time = 295.935233 +The maximum resident set size (KB) = 293536 Test 105 control_wam_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/regional_spp_sppt_shum_skeb_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 106 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3488,14 +3319,14 @@ Checking test 106 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 503.104626 -The maximum resident set size (KB) = 867976 +The total amount of wall time = 496.789897 +The maximum resident set size (KB) = 874636 Test 106 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/rap_control_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/rap_control_dyn32_phy32 Checking test 107 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3542,14 +3373,14 @@ Checking test 107 rap_control_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 324.886714 -The maximum resident set size (KB) = 769796 +The total amount of wall time = 325.355741 +The maximum resident set size (KB) = 768928 Test 107 rap_control_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/hrrr_control_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/hrrr_control_dyn32_phy32 Checking test 108 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3596,14 +3427,14 @@ Checking test 108 hrrr_control_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 173.048575 -The maximum resident set size (KB) = 769468 +The total amount of wall time = 171.685654 +The maximum resident set size (KB) = 766488 Test 108 hrrr_control_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/rap_2threads_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/rap_2threads_dyn32_phy32 Checking test 109 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3650,14 +3481,14 @@ Checking test 109 rap_2threads_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 748.421185 -The maximum resident set size (KB) = 816952 +The total amount of wall time = 751.507046 +The maximum resident set size (KB) = 811524 Test 109 rap_2threads_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/hrrr_control_2threads_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/hrrr_control_2threads_dyn32_phy32 Checking test 110 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3704,14 +3535,14 @@ Checking test 110 hrrr_control_2threads_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 381.868838 -The maximum resident set size (KB) = 811276 +The total amount of wall time = 381.187938 +The maximum resident set size (KB) = 809284 Test 110 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/hrrr_control_decomp_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/hrrr_control_decomp_dyn32_phy32 Checking test 111 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3758,14 +3589,14 @@ Checking test 111 hrrr_control_decomp_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 179.749480 -The maximum resident set size (KB) = 768808 +The total amount of wall time = 180.092075 +The maximum resident set size (KB) = 771476 Test 111 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/rap_restart_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/rap_restart_dyn32_phy32 Checking test 112 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3804,14 +3635,14 @@ Checking test 112 rap_restart_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 241.326039 -The maximum resident set size (KB) = 601140 +The total amount of wall time = 239.257874 +The maximum resident set size (KB) = 604148 Test 112 rap_restart_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/hrrr_control_restart_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/hrrr_control_restart_dyn32_phy32 Checking test 113 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3850,14 +3681,14 @@ Checking test 113 hrrr_control_restart_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 87.661272 -The maximum resident set size (KB) = 600060 +The total amount of wall time = 87.317475 +The maximum resident set size (KB) = 600252 Test 113 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_control_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/rap_control_dyn64_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_control_dyn64_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/rap_control_dyn64_phy32 Checking test 114 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3904,81 +3735,81 @@ Checking test 114 rap_control_dyn64_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 222.024856 -The maximum resident set size (KB) = 792952 +The total amount of wall time = 223.258260 +The maximum resident set size (KB) = 793712 Test 114 rap_control_dyn64_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/rap_control_debug_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/rap_control_debug_dyn32_phy32 Checking test 115 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 291.023973 -The maximum resident set size (KB) = 934024 +The total amount of wall time = 287.699597 +The maximum resident set size (KB) = 932676 Test 115 rap_control_debug_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/hrrr_control_debug_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/hrrr_control_debug_dyn32_phy32 Checking test 116 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 285.911233 -The maximum resident set size (KB) = 931488 +The total amount of wall time = 284.364876 +The maximum resident set size (KB) = 934352 Test 116 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/rap_control_dyn64_phy32_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_control_debug_dyn64_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/rap_control_dyn64_phy32_debug Checking test 117 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 291.256237 -The maximum resident set size (KB) = 956384 +The total amount of wall time = 288.846549 +The maximum resident set size (KB) = 950324 Test 117 rap_control_dyn64_phy32_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/hafs_regional_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/hafs_regional_atm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/hafs_regional_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/hafs_regional_atm Checking test 118 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -The total amount of wall time = 511.579708 -The maximum resident set size (KB) = 784956 +The total amount of wall time = 509.059476 +The maximum resident set size (KB) = 779428 Test 118 hafs_regional_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/hafs_regional_atm_thompson_gfdlsf +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/hafs_regional_atm_thompson_gfdlsf Checking test 119 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 594.119367 -The maximum resident set size (KB) = 1144452 +The total amount of wall time = 585.034230 +The maximum resident set size (KB) = 1143388 Test 119 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/hafs_regional_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/hafs_regional_atm_ocn +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/hafs_regional_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/hafs_regional_atm_ocn Checking test 120 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3987,14 +3818,14 @@ Checking test 120 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 = 432.084702 -The maximum resident set size (KB) = 830560 +The total amount of wall time = 426.785991 +The maximum resident set size (KB) = 831132 Test 120 hafs_regional_atm_ocn PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/hafs_regional_atm_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/hafs_regional_atm_wav +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/hafs_regional_atm_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/hafs_regional_atm_wav Checking test 121 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4003,14 +3834,14 @@ Checking test 121 hafs_regional_atm_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 680.294721 -The maximum resident set size (KB) = 861148 +The total amount of wall time = 690.886159 +The maximum resident set size (KB) = 866664 Test 121 hafs_regional_atm_wav PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/hafs_regional_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/hafs_regional_atm_ocn_wav +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/hafs_regional_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/hafs_regional_atm_ocn_wav Checking test 122 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4021,28 +3852,28 @@ Checking test 122 hafs_regional_atm_ocn_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 884.752592 -The maximum resident set size (KB) = 888564 +The total amount of wall time = 880.639271 +The maximum resident set size (KB) = 888260 Test 122 hafs_regional_atm_ocn_wav PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/hafs_regional_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/hafs_regional_1nest_atm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/hafs_regional_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/hafs_regional_1nest_atm Checking test 123 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 = 862.702433 -The maximum resident set size (KB) = 370492 +The total amount of wall time = 856.039601 +The maximum resident set size (KB) = 372048 Test 123 hafs_regional_1nest_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/hafs_regional_telescopic_2nests_atm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/hafs_regional_telescopic_2nests_atm Checking test 124 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4051,28 +3882,28 @@ Checking test 124 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -The total amount of wall time = 929.068877 -The maximum resident set size (KB) = 386608 +The total amount of wall time = 929.387726 +The maximum resident set size (KB) = 385644 Test 124 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/hafs_global_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/hafs_global_1nest_atm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/hafs_global_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/hafs_global_1nest_atm Checking test 125 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 = 400.441474 -The maximum resident set size (KB) = 269420 +The total amount of wall time = 395.918573 +The maximum resident set size (KB) = 269404 Test 125 hafs_global_1nest_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/hafs_global_multiple_4nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/hafs_global_multiple_4nests_atm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/hafs_global_multiple_4nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/hafs_global_multiple_4nests_atm Checking test 126 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4090,14 +3921,14 @@ Checking test 126 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK -The total amount of wall time = 1061.968644 -The maximum resident set size (KB) = 320944 +The total amount of wall time = 1058.826047 +The maximum resident set size (KB) = 306552 Test 126 hafs_global_multiple_4nests_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/hafs_regional_specified_moving_1nest_atm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/hafs_regional_specified_moving_1nest_atm Checking test 127 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4106,28 +3937,28 @@ Checking test 127 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -The total amount of wall time = 499.547785 -The maximum resident set size (KB) = 378096 +The total amount of wall time = 497.862927 +The maximum resident set size (KB) = 378780 Test 127 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/hafs_regional_storm_following_1nest_atm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/hafs_regional_storm_following_1nest_atm Checking test 128 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 483.828087 -The maximum resident set size (KB) = 378708 +The total amount of wall time = 481.264530 +The maximum resident set size (KB) = 378736 Test 128 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/hafs_regional_storm_following_1nest_atm_ocn +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/hafs_regional_storm_following_1nest_atm_ocn Checking test 129 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4136,14 +3967,14 @@ Checking test 129 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -The total amount of wall time = 496.296431 -The maximum resident set size (KB) = 406436 +The total amount of wall time = 494.934138 +The maximum resident set size (KB) = 405688 Test 129 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/hafs_regional_storm_following_1nest_atm_ocn_wav +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 130 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4154,28 +3985,28 @@ Checking test 130 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK -The total amount of wall time = 1079.904185 -The maximum resident set size (KB) = 472272 +The total amount of wall time = 1095.025266 +The maximum resident set size (KB) = 474816 Test 130 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/hafs_global_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/hafs_global_storm_following_1nest_atm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/hafs_global_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/hafs_global_storm_following_1nest_atm Checking test 131 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 144.593207 -The maximum resident set size (KB) = 269128 +The total amount of wall time = 144.726729 +The maximum resident set size (KB) = 282904 Test 131 hafs_global_storm_following_1nest_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/hafs_regional_docn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/hafs_regional_docn +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/hafs_regional_docn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/hafs_regional_docn Checking test 132 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4183,14 +4014,14 @@ Checking test 132 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 -The total amount of wall time = 393.435770 -The maximum resident set size (KB) = 836076 +The total amount of wall time = 390.764612 +The maximum resident set size (KB) = 837204 Test 132 hafs_regional_docn PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/hafs_regional_docn_oisst -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/hafs_regional_docn_oisst +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/hafs_regional_docn_oisst +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/hafs_regional_docn_oisst Checking test 133 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4198,131 +4029,131 @@ Checking test 133 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 -The total amount of wall time = 394.111574 -The maximum resident set size (KB) = 821724 +The total amount of wall time = 390.428183 +The maximum resident set size (KB) = 821420 Test 133 hafs_regional_docn_oisst PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/hafs_regional_datm_cdeps -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/hafs_regional_datm_cdeps +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/hafs_regional_datm_cdeps +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/hafs_regional_datm_cdeps Checking test 134 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 -The total amount of wall time = 1180.196083 -The maximum resident set size (KB) = 840100 +The total amount of wall time = 1179.443663 +The maximum resident set size (KB) = 837852 Test 134 hafs_regional_datm_cdeps PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/datm_cdeps_control_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/datm_cdeps_control_cfsr +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/datm_cdeps_control_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/datm_cdeps_control_cfsr Checking test 135 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 -The total amount of wall time = 142.843987 -The maximum resident set size (KB) = 732912 +The total amount of wall time = 143.270775 +The maximum resident set size (KB) = 732732 Test 135 datm_cdeps_control_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/datm_cdeps_control_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/datm_cdeps_restart_cfsr +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/datm_cdeps_control_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/datm_cdeps_restart_cfsr Checking test 136 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 -The total amount of wall time = 86.859927 -The maximum resident set size (KB) = 707652 +The total amount of wall time = 89.393165 +The maximum resident set size (KB) = 729692 Test 136 datm_cdeps_restart_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/datm_cdeps_control_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/datm_cdeps_control_gefs +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/datm_cdeps_control_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/datm_cdeps_control_gefs Checking test 137 datm_cdeps_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 135.671449 -The maximum resident set size (KB) = 614084 +The total amount of wall time = 135.796330 +The maximum resident set size (KB) = 615956 Test 137 datm_cdeps_control_gefs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/datm_cdeps_iau_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/datm_cdeps_iau_gefs +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/datm_cdeps_iau_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/datm_cdeps_iau_gefs Checking test 138 datm_cdeps_iau_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 137.187586 -The maximum resident set size (KB) = 619900 +The total amount of wall time = 139.724413 +The maximum resident set size (KB) = 611348 Test 138 datm_cdeps_iau_gefs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/datm_cdeps_stochy_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/datm_cdeps_stochy_gefs +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/datm_cdeps_stochy_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/datm_cdeps_stochy_gefs Checking test 139 datm_cdeps_stochy_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 139.238905 -The maximum resident set size (KB) = 610940 +The total amount of wall time = 139.434044 +The maximum resident set size (KB) = 613720 Test 139 datm_cdeps_stochy_gefs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/datm_cdeps_ciceC_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/datm_cdeps_ciceC_cfsr +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/datm_cdeps_ciceC_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/datm_cdeps_ciceC_cfsr Checking test 140 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 142.557915 -The maximum resident set size (KB) = 736060 +The total amount of wall time = 144.709737 +The maximum resident set size (KB) = 732344 Test 140 datm_cdeps_ciceC_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/datm_cdeps_bulk_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/datm_cdeps_bulk_cfsr +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/datm_cdeps_bulk_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/datm_cdeps_bulk_cfsr Checking test 141 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 -The total amount of wall time = 143.023614 -The maximum resident set size (KB) = 730980 +The total amount of wall time = 144.077147 +The maximum resident set size (KB) = 732784 Test 141 datm_cdeps_bulk_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/datm_cdeps_bulk_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/datm_cdeps_bulk_gefs +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/datm_cdeps_bulk_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/datm_cdeps_bulk_gefs Checking test 142 datm_cdeps_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 135.106369 -The maximum resident set size (KB) = 613012 +The total amount of wall time = 135.467156 +The maximum resident set size (KB) = 617388 Test 142 datm_cdeps_bulk_gefs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/datm_cdeps_mx025_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/datm_cdeps_mx025_cfsr +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/datm_cdeps_mx025_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/datm_cdeps_mx025_cfsr Checking test 143 datm_cdeps_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -4331,14 +4162,14 @@ Checking test 143 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 -The total amount of wall time = 438.849778 -The maximum resident set size (KB) = 568348 +The total amount of wall time = 445.557321 +The maximum resident set size (KB) = 569768 Test 143 datm_cdeps_mx025_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/datm_cdeps_mx025_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/datm_cdeps_mx025_gefs +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/datm_cdeps_mx025_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/datm_cdeps_mx025_gefs Checking test 144 datm_cdeps_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -4347,52 +4178,176 @@ Checking test 144 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK -The total amount of wall time = 434.448181 -The maximum resident set size (KB) = 552636 +The total amount of wall time = 439.592184 +The maximum resident set size (KB) = 548200 Test 144 datm_cdeps_mx025_gefs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/datm_cdeps_control_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/datm_cdeps_multiple_files_cfsr +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/datm_cdeps_control_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/datm_cdeps_multiple_files_cfsr Checking test 145 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 142.526525 -The maximum resident set size (KB) = 733956 +The total amount of wall time = 143.853389 +The maximum resident set size (KB) = 731924 Test 145 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/datm_cdeps_3072x1536_cfsr +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/datm_cdeps_3072x1536_cfsr Checking test 146 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 -The total amount of wall time = 255.965431 -The maximum resident set size (KB) = 1977976 +The total amount of wall time = 259.215099 +The maximum resident set size (KB) = 1981460 Test 146 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/datm_cdeps_gfs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/datm_cdeps_gfs +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/datm_cdeps_gfs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/datm_cdeps_gfs Checking test 147 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 -The total amount of wall time = 255.334988 -The maximum resident set size (KB) = 1978920 +The total amount of wall time = 259.285034 +The maximum resident set size (KB) = 1977448 Test 147 datm_cdeps_gfs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/control_atmwav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/control_atmwav -Checking test 148 control_atmwav results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/datm_cdeps_lnd_gswp3 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/datm_cdeps_lnd_gswp3 +Checking test 148 datm_cdeps_lnd_gswp3 results .... + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile4.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK + +The total amount of wall time = 23.455139 +The maximum resident set size (KB) = 265168 + +Test 148 datm_cdeps_lnd_gswp3 PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/datm_cdeps_lnd_gswp3 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/datm_cdeps_lnd_gswp3_rst +Checking test 149 datm_cdeps_lnd_gswp3_rst results .... + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile4.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK + +The total amount of wall time = 28.001823 +The maximum resident set size (KB) = 334324 + +Test 149 datm_cdeps_lnd_gswp3_rst PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/control_p8_atmlnd_sbs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/control_p8_atmlnd_sbs +Checking test 150 control_p8_atmlnd_sbs results .... + Comparing sfcf000.tile1.nc .........OK + Comparing sfcf000.tile2.nc .........OK + Comparing sfcf000.tile3.nc .........OK + Comparing sfcf000.tile4.nc .........OK + Comparing sfcf000.tile5.nc .........OK + Comparing sfcf000.tile6.nc .........OK + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf000.tile1.nc .........OK + Comparing atmf000.tile2.nc .........OK + Comparing atmf000.tile3.nc .........OK + Comparing atmf000.tile4.nc .........OK + Comparing atmf000.tile5.nc .........OK + Comparing atmf000.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing ufs.cpld.cpl.hi.lnd.2021-03-22-43200.nc .........OK + Comparing ufs.cpld.cpl.hi.lnd.2021-03-23-21600.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile1.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile2.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile3.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile4.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile5.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile6.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile1.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile2.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile3.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile4.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK + +The total amount of wall time = 226.905133 +The maximum resident set size (KB) = 1538948 + +Test 150 control_p8_atmlnd_sbs PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/control_atmwav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/control_atmwav +Checking test 151 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -4435,15 +4390,15 @@ Checking test 148 control_atmwav results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK -The total amount of wall time = 87.374493 -The maximum resident set size (KB) = 541744 +The total amount of wall time = 88.355571 +The maximum resident set size (KB) = 539616 -Test 148 control_atmwav PASS +Test 151 control_atmwav PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/atmaero_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/atmaero_control_p8 -Checking test 149 atmaero_control_p8 results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/atmaero_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/atmaero_control_p8 +Checking test 152 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4486,15 +4441,15 @@ Checking test 149 atmaero_control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 241.889021 -The maximum resident set size (KB) = 2809836 +The total amount of wall time = 237.275223 +The maximum resident set size (KB) = 2816060 -Test 149 atmaero_control_p8 PASS +Test 152 atmaero_control_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/atmaero_control_p8_rad -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/atmaero_control_p8_rad -Checking test 150 atmaero_control_p8_rad results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/atmaero_control_p8_rad +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/atmaero_control_p8_rad +Checking test 153 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4537,15 +4492,15 @@ Checking test 150 atmaero_control_p8_rad results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 279.068633 -The maximum resident set size (KB) = 2872208 +The total amount of wall time = 278.422031 +The maximum resident set size (KB) = 2876452 -Test 150 atmaero_control_p8_rad PASS +Test 153 atmaero_control_p8_rad PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/atmaero_control_p8_rad_micro -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/atmaero_control_p8_rad_micro -Checking test 151 atmaero_control_p8_rad_micro results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/atmaero_control_p8_rad_micro +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/atmaero_control_p8_rad_micro +Checking test 154 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4588,15 +4543,15 @@ Checking test 151 atmaero_control_p8_rad_micro results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 284.769970 -The maximum resident set size (KB) = 2885160 +The total amount of wall time = 286.678695 +The maximum resident set size (KB) = 2885852 -Test 151 atmaero_control_p8_rad_micro PASS +Test 154 atmaero_control_p8_rad_micro PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/regional_atmaq -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80975/regional_atmaq -Checking test 152 regional_atmaq results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/regional_atmaq +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_138919/regional_atmaq +Checking test 155 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing sfcf006.nc .........OK @@ -4611,12 +4566,254 @@ Checking test 152 regional_atmaq results .... Comparing RESTART/phy_data.nc .........OK Comparing RESTART/sfc_data.nc .........OK -The total amount of wall time = 695.998795 -The maximum resident set size (KB) = 1039632 +The total amount of wall time = 741.699912 +The maximum resident set size (KB) = 1035648 + +Test 155 regional_atmaq PASS + +FAILED TESTS: +Test cpld_restart_c192_p8 009 failed in run_test failed +Test cpld_bmark_p8 010 failed in run_test failed +Test cpld_bmark_esmfthreads_p8 012 failed in run_test failed + +REGRESSION TEST FAILED +Fri Oct 28 07:20:07 UTC 2022 +Elapsed time: 16h:34m:57s. Have a nice day! +Fri Oct 28 12:07:00 UTC 2022 +Start Regression test + +Compile 001 elapsed time 497 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/cpld_control_c192_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117747/cpld_control_c192_p8 +Checking test 001 cpld_control_c192_p8 results .... + Comparing sfcf030.tile1.nc .........OK + Comparing sfcf030.tile2.nc .........OK + Comparing sfcf030.tile3.nc .........OK + Comparing sfcf030.tile4.nc .........OK + Comparing sfcf030.tile5.nc .........OK + Comparing sfcf030.tile6.nc .........OK + Comparing atmf030.tile1.nc .........OK + Comparing atmf030.tile2.nc .........OK + Comparing atmf030.tile3.nc .........OK + Comparing atmf030.tile4.nc .........OK + Comparing atmf030.tile5.nc .........OK + Comparing atmf030.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_1200z.nc4 .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-43200.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK + Comparing 20210323.120000.out_grd.ww3 .........OK + Comparing 20210323.120000.out_pnt.ww3 .........OK + +The total amount of wall time = 1128.583971 +The maximum resident set size (KB) = 3123172 + +Test 001 cpld_control_c192_p8 PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/cpld_control_c192_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117747/cpld_restart_c192_p8 +Checking test 002 cpld_restart_c192_p8 results .... + Comparing sfcf030.tile1.nc .........OK + Comparing sfcf030.tile2.nc .........OK + Comparing sfcf030.tile3.nc .........OK + Comparing sfcf030.tile4.nc .........OK + Comparing sfcf030.tile5.nc .........OK + Comparing sfcf030.tile6.nc .........OK + Comparing atmf030.tile1.nc .........OK + Comparing atmf030.tile2.nc .........OK + Comparing atmf030.tile3.nc .........OK + Comparing atmf030.tile4.nc .........OK + Comparing atmf030.tile5.nc .........OK + Comparing atmf030.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_1200z.nc4 .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-43200.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK + Comparing 20210323.120000.out_grd.ww3 .........OK + Comparing 20210323.120000.out_pnt.ww3 .........OK + +The total amount of wall time = 696.319230 +The maximum resident set size (KB) = 3051768 + +Test 002 cpld_restart_c192_p8 PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/cpld_bmark_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117747/cpld_bmark_p8 +Checking test 003 cpld_bmark_p8 results .... + Comparing sfcf006.nc .........OK + Comparing atmf006.nc .........OK + Comparing GFSFLX.GrbF06 .........OK + Comparing GFSPRS.GrbF06 .........OK + Comparing gocart.inst_aod.20130401_0600z.nc4 .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/iced.2013-04-01-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK + Comparing 20130401.060000.out_pnt.ww3 .........OK + Comparing 20130401.060000.out_grd.ww3 .........OK + +The total amount of wall time = 1428.748719 +The maximum resident set size (KB) = 3890956 + +Test 003 cpld_bmark_p8 PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/cpld_bmark_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117747/cpld_bmark_esmfthreads_p8 +Checking test 004 cpld_bmark_esmfthreads_p8 results .... + Comparing sfcf006.nc .........OK + Comparing atmf006.nc .........OK + Comparing GFSFLX.GrbF06 .........OK + Comparing GFSPRS.GrbF06 .........OK + Comparing gocart.inst_aod.20130401_0600z.nc4 .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/iced.2013-04-01-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK + Comparing 20130401.060000.out_pnt.ww3 .........OK + Comparing 20130401.060000.out_grd.ww3 .........OK + +The total amount of wall time = 923.592750 +The maximum resident set size (KB) = 3914840 -Test 152 regional_atmaq PASS +Test 004 cpld_bmark_esmfthreads_p8 PASS REGRESSION TEST WAS SUCCESSFUL -Tue Oct 25 21:28:09 UTC 2022 -Elapsed time: 03h:21m:31s. Have a nice day! +Fri Oct 28 13:01:03 UTC 2022 +Elapsed time: 00h:54m:03s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.gnu.log b/tests/RegressionTests_cheyenne.gnu.log index 72a268b59a..0ea11d01f8 100644 --- a/tests/RegressionTests_cheyenne.gnu.log +++ b/tests/RegressionTests_cheyenne.gnu.log @@ -1,21 +1,21 @@ -Tue Oct 25 07:59:48 MDT 2022 +Wed Oct 26 16:59:41 MDT 2022 Start Regression test -Compile 001 elapsed time 390 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 002 elapsed time 404 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 003 elapsed time 827 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 004 elapsed time 202 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 376 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 1056 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 001 elapsed time 389 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 002 elapsed time 414 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 003 elapsed time 831 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 004 elapsed time 200 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 379 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 1058 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release Compile 007 elapsed time 828 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 829 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 666 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 010 elapsed time 577 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 011 elapsed time 366 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 012 elapsed time 309 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/GNU/control -working dir = /glade/scratch/jongkim/rt-1454-gnu/jongkim/FV3_RT/rt_5974/control +Compile 008 elapsed time 827 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 624 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 010 elapsed time 572 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 011 elapsed time 367 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 012 elapsed time 301 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/GNU/control +working dir = /glade/scratch/jongkim/rt-1443-gnu/jongkim/FV3_RT/rt_44711/control Checking test 001 control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -62,14 +62,14 @@ Checking test 001 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 275.646733 -0:The maximum resident set size (KB) = 435436 +0:The total amount of wall time = 276.113917 +0:The maximum resident set size (KB) = 435120 Test 001 control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/GNU/control -working dir = /glade/scratch/jongkim/rt-1454-gnu/jongkim/FV3_RT/rt_5974/control_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/GNU/control +working dir = /glade/scratch/jongkim/rt-1443-gnu/jongkim/FV3_RT/rt_44711/control_restart Checking test 002 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -108,14 +108,14 @@ Checking test 002 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 138.539603 -0:The maximum resident set size (KB) = 185376 +0:The total amount of wall time = 138.059423 +0:The maximum resident set size (KB) = 185196 Test 002 control_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/GNU/control_c48 -working dir = /glade/scratch/jongkim/rt-1454-gnu/jongkim/FV3_RT/rt_5974/control_c48 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/GNU/control_c48 +working dir = /glade/scratch/jongkim/rt-1443-gnu/jongkim/FV3_RT/rt_44711/control_c48 Checking test 003 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -154,14 +154,14 @@ Checking test 003 control_c48 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 817.690794 -0:The maximum resident set size (KB) = 676636 +0:The total amount of wall time = 813.468570 +0:The maximum resident set size (KB) = 676704 Test 003 control_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/GNU/control_stochy -working dir = /glade/scratch/jongkim/rt-1454-gnu/jongkim/FV3_RT/rt_5974/control_stochy +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/GNU/control_stochy +working dir = /glade/scratch/jongkim/rt-1443-gnu/jongkim/FV3_RT/rt_44711/control_stochy Checking test 004 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -172,14 +172,14 @@ Checking test 004 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 176.526857 -0:The maximum resident set size (KB) = 430828 +0:The total amount of wall time = 177.925742 +0:The maximum resident set size (KB) = 429828 Test 004 control_stochy PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/GNU/control_ras -working dir = /glade/scratch/jongkim/rt-1454-gnu/jongkim/FV3_RT/rt_5974/control_ras +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/GNU/control_ras +working dir = /glade/scratch/jongkim/rt-1443-gnu/jongkim/FV3_RT/rt_44711/control_ras Checking test 005 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -190,14 +190,14 @@ Checking test 005 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 286.369776 -0:The maximum resident set size (KB) = 448260 +0:The total amount of wall time = 292.598945 +0:The maximum resident set size (KB) = 447720 Test 005 control_ras PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/GNU/control_p8 -working dir = /glade/scratch/jongkim/rt-1454-gnu/jongkim/FV3_RT/rt_5974/control_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/GNU/control_p8 +working dir = /glade/scratch/jongkim/rt-1443-gnu/jongkim/FV3_RT/rt_44711/control_p8 Checking test 006 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -244,14 +244,14 @@ Checking test 006 control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 307.950743 -0:The maximum resident set size (KB) = 1222428 +0:The total amount of wall time = 306.788330 +0:The maximum resident set size (KB) = 1222396 Test 006 control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/GNU/rap_control -working dir = /glade/scratch/jongkim/rt-1454-gnu/jongkim/FV3_RT/rt_5974/rap_control +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/GNU/rap_control +working dir = /glade/scratch/jongkim/rt-1443-gnu/jongkim/FV3_RT/rt_44711/rap_control Checking test 007 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -298,14 +298,14 @@ Checking test 007 rap_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 710.832684 -0:The maximum resident set size (KB) = 776044 +0:The total amount of wall time = 705.046210 +0:The maximum resident set size (KB) = 776024 Test 007 rap_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/GNU/rap_control -working dir = /glade/scratch/jongkim/rt-1454-gnu/jongkim/FV3_RT/rt_5974/rap_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/GNU/rap_control +working dir = /glade/scratch/jongkim/rt-1443-gnu/jongkim/FV3_RT/rt_44711/rap_decomp Checking test 008 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -352,14 +352,14 @@ Checking test 008 rap_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 717.446386 -0:The maximum resident set size (KB) = 775400 +0:The total amount of wall time = 717.932271 +0:The maximum resident set size (KB) = 775548 Test 008 rap_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/GNU/rap_control -working dir = /glade/scratch/jongkim/rt-1454-gnu/jongkim/FV3_RT/rt_5974/rap_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/GNU/rap_control +working dir = /glade/scratch/jongkim/rt-1443-gnu/jongkim/FV3_RT/rt_44711/rap_2threads Checking test 009 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -406,14 +406,14 @@ Checking test 009 rap_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 1244.473494 -0:The maximum resident set size (KB) = 843424 +0:The total amount of wall time = 1246.505973 +0:The maximum resident set size (KB) = 843268 Test 009 rap_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/GNU/rap_control -working dir = /glade/scratch/jongkim/rt-1454-gnu/jongkim/FV3_RT/rt_5974/rap_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/GNU/rap_control +working dir = /glade/scratch/jongkim/rt-1443-gnu/jongkim/FV3_RT/rt_44711/rap_restart Checking test 010 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -452,14 +452,14 @@ Checking test 010 rap_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 352.642264 -0:The maximum resident set size (KB) = 523912 +0:The total amount of wall time = 351.961917 +0:The maximum resident set size (KB) = 523848 Test 010 rap_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/GNU/rap_sfcdiff -working dir = /glade/scratch/jongkim/rt-1454-gnu/jongkim/FV3_RT/rt_5974/rap_sfcdiff +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/GNU/rap_sfcdiff +working dir = /glade/scratch/jongkim/rt-1443-gnu/jongkim/FV3_RT/rt_44711/rap_sfcdiff Checking test 011 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -506,14 +506,14 @@ Checking test 011 rap_sfcdiff results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 705.311271 -0:The maximum resident set size (KB) = 775956 +0:The total amount of wall time = 699.951962 +0:The maximum resident set size (KB) = 775924 Test 011 rap_sfcdiff PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/GNU/rap_sfcdiff -working dir = /glade/scratch/jongkim/rt-1454-gnu/jongkim/FV3_RT/rt_5974/rap_sfcdiff_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/GNU/rap_sfcdiff +working dir = /glade/scratch/jongkim/rt-1443-gnu/jongkim/FV3_RT/rt_44711/rap_sfcdiff_decomp Checking test 012 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -560,14 +560,14 @@ Checking test 012 rap_sfcdiff_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 714.596864 -0:The maximum resident set size (KB) = 775448 +0:The total amount of wall time = 712.694796 +0:The maximum resident set size (KB) = 775560 Test 012 rap_sfcdiff_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/GNU/rap_sfcdiff -working dir = /glade/scratch/jongkim/rt-1454-gnu/jongkim/FV3_RT/rt_5974/rap_sfcdiff_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/GNU/rap_sfcdiff +working dir = /glade/scratch/jongkim/rt-1443-gnu/jongkim/FV3_RT/rt_44711/rap_sfcdiff_restart Checking test 013 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -606,14 +606,14 @@ Checking test 013 rap_sfcdiff_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 525.090645 -0:The maximum resident set size (KB) = 523516 +0:The total amount of wall time = 523.050388 +0:The maximum resident set size (KB) = 523396 Test 013 rap_sfcdiff_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/GNU/hrrr_control -working dir = /glade/scratch/jongkim/rt-1454-gnu/jongkim/FV3_RT/rt_5974/hrrr_control +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/GNU/hrrr_control +working dir = /glade/scratch/jongkim/rt-1443-gnu/jongkim/FV3_RT/rt_44711/hrrr_control Checking test 014 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -660,14 +660,14 @@ Checking test 014 hrrr_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 681.439056 -0:The maximum resident set size (KB) = 773428 +0:The total amount of wall time = 680.107087 +0:The maximum resident set size (KB) = 773532 Test 014 hrrr_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/GNU/hrrr_control -working dir = /glade/scratch/jongkim/rt-1454-gnu/jongkim/FV3_RT/rt_5974/hrrr_control_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/GNU/hrrr_control +working dir = /glade/scratch/jongkim/rt-1443-gnu/jongkim/FV3_RT/rt_44711/hrrr_control_2threads Checking test 015 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -714,14 +714,14 @@ Checking test 015 hrrr_control_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 1181.670595 -0:The maximum resident set size (KB) = 837900 +0:The total amount of wall time = 1181.386920 +0:The maximum resident set size (KB) = 838048 Test 015 hrrr_control_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/GNU/hrrr_control -working dir = /glade/scratch/jongkim/rt-1454-gnu/jongkim/FV3_RT/rt_5974/hrrr_control_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/GNU/hrrr_control +working dir = /glade/scratch/jongkim/rt-1443-gnu/jongkim/FV3_RT/rt_44711/hrrr_control_decomp Checking test 016 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -768,14 +768,14 @@ Checking test 016 hrrr_control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 676.351842 -0:The maximum resident set size (KB) = 772936 +0:The total amount of wall time = 676.346324 +0:The maximum resident set size (KB) = 773108 Test 016 hrrr_control_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/GNU/hrrr_control -working dir = /glade/scratch/jongkim/rt-1454-gnu/jongkim/FV3_RT/rt_5974/hrrr_control_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/GNU/hrrr_control +working dir = /glade/scratch/jongkim/rt-1443-gnu/jongkim/FV3_RT/rt_44711/hrrr_control_restart Checking test 017 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -814,14 +814,14 @@ Checking test 017 hrrr_control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 508.644099 -0:The maximum resident set size (KB) = 519564 +0:The total amount of wall time = 505.815973 +0:The maximum resident set size (KB) = 519308 Test 017 hrrr_control_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/GNU/rrfs_v1beta -working dir = /glade/scratch/jongkim/rt-1454-gnu/jongkim/FV3_RT/rt_5974/rrfs_v1beta +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/GNU/rrfs_v1beta +working dir = /glade/scratch/jongkim/rt-1443-gnu/jongkim/FV3_RT/rt_44711/rrfs_v1beta Checking test 018 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -868,14 +868,14 @@ Checking test 018 rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 689.891291 -0:The maximum resident set size (KB) = 773140 +0:The total amount of wall time = 689.331015 +0:The maximum resident set size (KB) = 773216 Test 018 rrfs_v1beta PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/GNU/rrfs_conus13km_hrrr_warm -working dir = /glade/scratch/jongkim/rt-1454-gnu/jongkim/FV3_RT/rt_5974/rrfs_conus13km_hrrr_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/GNU/rrfs_conus13km_hrrr_warm +working dir = /glade/scratch/jongkim/rt-1443-gnu/jongkim/FV3_RT/rt_44711/rrfs_conus13km_hrrr_warm Checking test 019 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -884,14 +884,14 @@ Checking test 019 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 201.775016 -0:The maximum resident set size (KB) = 593556 +0:The total amount of wall time = 202.939194 +0:The maximum resident set size (KB) = 593776 Test 019 rrfs_conus13km_hrrr_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/jongkim/rt-1454-gnu/jongkim/FV3_RT/rt_5974/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/GNU/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/jongkim/rt-1443-gnu/jongkim/FV3_RT/rt_44711/rrfs_smoke_conus13km_hrrr_warm Checking test 020 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -900,14 +900,14 @@ Checking test 020 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 220.686598 -0:The maximum resident set size (KB) = 607612 +0:The total amount of wall time = 219.998846 +0:The maximum resident set size (KB) = 607924 Test 020 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/GNU/rrfs_conus13km_radar_tten_warm -working dir = /glade/scratch/jongkim/rt-1454-gnu/jongkim/FV3_RT/rt_5974/rrfs_conus13km_radar_tten_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/GNU/rrfs_conus13km_radar_tten_warm +working dir = /glade/scratch/jongkim/rt-1443-gnu/jongkim/FV3_RT/rt_44711/rrfs_conus13km_radar_tten_warm Checking test 021 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -916,14 +916,14 @@ Checking test 021 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 203.272815 -0:The maximum resident set size (KB) = 596516 +0:The total amount of wall time = 205.125333 +0:The maximum resident set size (KB) = 596580 Test 021 rrfs_conus13km_radar_tten_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/GNU/rrfs_conus13km_radar_tten_warm -working dir = /glade/scratch/jongkim/rt-1454-gnu/jongkim/FV3_RT/rt_5974/rrfs_conus13km_radar_tten_warm_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/GNU/rrfs_conus13km_radar_tten_warm +working dir = /glade/scratch/jongkim/rt-1443-gnu/jongkim/FV3_RT/rt_44711/rrfs_conus13km_radar_tten_warm_2threads Checking test 022 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -932,222 +932,222 @@ Checking test 022 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 203.521800 -0:The maximum resident set size (KB) = 599720 +0:The total amount of wall time = 205.224353 +0:The maximum resident set size (KB) = 600744 Test 022 rrfs_conus13km_radar_tten_warm_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/GNU/control_debug -working dir = /glade/scratch/jongkim/rt-1454-gnu/jongkim/FV3_RT/rt_5974/control_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/GNU/control_debug +working dir = /glade/scratch/jongkim/rt-1443-gnu/jongkim/FV3_RT/rt_44711/control_debug Checking test 023 control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 81.100958 -0:The maximum resident set size (KB) = 426280 +0:The total amount of wall time = 81.769563 +0:The maximum resident set size (KB) = 425876 Test 023 control_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/GNU/control_diag_debug -working dir = /glade/scratch/jongkim/rt-1454-gnu/jongkim/FV3_RT/rt_5974/control_diag_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/GNU/control_diag_debug +working dir = /glade/scratch/jongkim/rt-1443-gnu/jongkim/FV3_RT/rt_44711/control_diag_debug Checking test 024 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 87.295148 -0:The maximum resident set size (KB) = 483680 +0:The total amount of wall time = 88.182957 +0:The maximum resident set size (KB) = 483132 Test 024 control_diag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/GNU/fv3_regional_debug -working dir = /glade/scratch/jongkim/rt-1454-gnu/jongkim/FV3_RT/rt_5974/regional_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/GNU/fv3_regional_debug +working dir = /glade/scratch/jongkim/rt-1443-gnu/jongkim/FV3_RT/rt_44711/regional_debug Checking test 025 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -0:The total amount of wall time = 131.411025 -0:The maximum resident set size (KB) = 537280 +0:The total amount of wall time = 132.441044 +0:The maximum resident set size (KB) = 537060 Test 025 regional_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/GNU/rap_control_debug -working dir = /glade/scratch/jongkim/rt-1454-gnu/jongkim/FV3_RT/rt_5974/rap_control_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/GNU/rap_control_debug +working dir = /glade/scratch/jongkim/rt-1443-gnu/jongkim/FV3_RT/rt_44711/rap_control_debug Checking test 026 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 149.149269 -0:The maximum resident set size (KB) = 798320 +0:The total amount of wall time = 151.035673 +0:The maximum resident set size (KB) = 798552 Test 026 rap_control_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/GNU/hrrr_control_debug -working dir = /glade/scratch/jongkim/rt-1454-gnu/jongkim/FV3_RT/rt_5974/hrrr_control_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/GNU/hrrr_control_debug +working dir = /glade/scratch/jongkim/rt-1443-gnu/jongkim/FV3_RT/rt_44711/hrrr_control_debug Checking test 027 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 145.409958 -0:The maximum resident set size (KB) = 793160 +0:The total amount of wall time = 146.546454 +0:The maximum resident set size (KB) = 793212 Test 027 hrrr_control_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/GNU/rap_diag_debug -working dir = /glade/scratch/jongkim/rt-1454-gnu/jongkim/FV3_RT/rt_5974/rap_diag_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/GNU/rap_diag_debug +working dir = /glade/scratch/jongkim/rt-1443-gnu/jongkim/FV3_RT/rt_44711/rap_diag_debug Checking test 028 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 156.364817 -0:The maximum resident set size (KB) = 881776 +0:The total amount of wall time = 158.063150 +0:The maximum resident set size (KB) = 882072 Test 028 rap_diag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/GNU/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /glade/scratch/jongkim/rt-1454-gnu/jongkim/FV3_RT/rt_5974/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/GNU/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /glade/scratch/jongkim/rt-1443-gnu/jongkim/FV3_RT/rt_44711/rap_noah_sfcdiff_cires_ugwp_debug Checking test 029 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 237.005565 -0:The maximum resident set size (KB) = 796912 +0:The total amount of wall time = 239.054644 +0:The maximum resident set size (KB) = 797048 Test 029 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/GNU/rap_progcld_thompson_debug -working dir = /glade/scratch/jongkim/rt-1454-gnu/jongkim/FV3_RT/rt_5974/rap_progcld_thompson_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/GNU/rap_progcld_thompson_debug +working dir = /glade/scratch/jongkim/rt-1443-gnu/jongkim/FV3_RT/rt_44711/rap_progcld_thompson_debug Checking test 030 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 148.300516 -0:The maximum resident set size (KB) = 798376 +0:The total amount of wall time = 148.705582 +0:The maximum resident set size (KB) = 798528 Test 030 rap_progcld_thompson_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/GNU/rrfs_v1beta_debug -working dir = /glade/scratch/jongkim/rt-1454-gnu/jongkim/FV3_RT/rt_5974/rrfs_v1beta_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/GNU/rrfs_v1beta_debug +working dir = /glade/scratch/jongkim/rt-1443-gnu/jongkim/FV3_RT/rt_44711/rrfs_v1beta_debug Checking test 031 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 146.765996 -0:The maximum resident set size (KB) = 792836 +0:The total amount of wall time = 147.588673 +0:The maximum resident set size (KB) = 792808 Test 031 rrfs_v1beta_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/GNU/control_ras_debug -working dir = /glade/scratch/jongkim/rt-1454-gnu/jongkim/FV3_RT/rt_5974/control_ras_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/GNU/control_ras_debug +working dir = /glade/scratch/jongkim/rt-1443-gnu/jongkim/FV3_RT/rt_44711/control_ras_debug Checking test 032 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 84.149407 -0:The maximum resident set size (KB) = 436184 +0:The total amount of wall time = 84.734541 +0:The maximum resident set size (KB) = 436224 Test 032 control_ras_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/GNU/control_stochy_debug -working dir = /glade/scratch/jongkim/rt-1454-gnu/jongkim/FV3_RT/rt_5974/control_stochy_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/GNU/control_stochy_debug +working dir = /glade/scratch/jongkim/rt-1443-gnu/jongkim/FV3_RT/rt_44711/control_stochy_debug Checking test 033 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 92.496975 -0:The maximum resident set size (KB) = 430188 +0:The total amount of wall time = 92.535440 +0:The maximum resident set size (KB) = 430380 Test 033 control_stochy_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/GNU/control_debug_p8 -working dir = /glade/scratch/jongkim/rt-1454-gnu/jongkim/FV3_RT/rt_5974/control_debug_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/GNU/control_debug_p8 +working dir = /glade/scratch/jongkim/rt-1443-gnu/jongkim/FV3_RT/rt_44711/control_debug_p8 Checking test 034 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 95.727200 -0:The maximum resident set size (KB) = 1213508 +0:The total amount of wall time = 94.812831 +0:The maximum resident set size (KB) = 1213796 Test 034 control_debug_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/GNU/rrfs_conus13km_hrrr_warm_debugs -working dir = /glade/scratch/jongkim/rt-1454-gnu/jongkim/FV3_RT/rt_5974/rrfs_conus13km_hrrr_warm_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/GNU/rrfs_conus13km_hrrr_warm_debugs +working dir = /glade/scratch/jongkim/rt-1443-gnu/jongkim/FV3_RT/rt_44711/rrfs_conus13km_hrrr_warm_debug Checking test 035 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 385.553391 -0:The maximum resident set size (KB) = 601028 +0:The total amount of wall time = 385.384625 +0:The maximum resident set size (KB) = 601380 Test 035 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/GNU/rrfs_conus13km_radar_tten_warm_debug -working dir = /glade/scratch/jongkim/rt-1454-gnu/jongkim/FV3_RT/rt_5974/rrfs_conus13km_radar_tten_warm_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/GNU/rrfs_conus13km_radar_tten_warm_debug +working dir = /glade/scratch/jongkim/rt-1443-gnu/jongkim/FV3_RT/rt_44711/rrfs_conus13km_radar_tten_warm_debug Checking test 036 rrfs_conus13km_radar_tten_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 385.881799 -0:The maximum resident set size (KB) = 604008 +0:The total amount of wall time = 388.389570 +0:The maximum resident set size (KB) = 604204 Test 036 rrfs_conus13km_radar_tten_warm_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/GNU/control_wam_debug -working dir = /glade/scratch/jongkim/rt-1454-gnu/jongkim/FV3_RT/rt_5974/control_wam_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/GNU/control_wam_debug +working dir = /glade/scratch/jongkim/rt-1443-gnu/jongkim/FV3_RT/rt_44711/control_wam_debug Checking test 037 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -0:The total amount of wall time = 144.942189 -0:The maximum resident set size (KB) = 172636 +0:The total amount of wall time = 143.890753 +0:The maximum resident set size (KB) = 172672 Test 037 control_wam_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1454-gnu/jongkim/FV3_RT/rt_5974/rap_control_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/GNU/rap_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1443-gnu/jongkim/FV3_RT/rt_44711/rap_control_dyn32_phy32 Checking test 038 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1194,14 +1194,14 @@ Checking test 038 rap_control_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 679.867285 -0:The maximum resident set size (KB) = 661572 +0:The total amount of wall time = 675.896708 +0:The maximum resident set size (KB) = 661976 Test 038 rap_control_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1454-gnu/jongkim/FV3_RT/rt_5974/hrrr_control_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/GNU/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1443-gnu/jongkim/FV3_RT/rt_44711/hrrr_control_dyn32_phy32 Checking test 039 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1248,14 +1248,14 @@ Checking test 039 hrrr_control_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 345.030866 -0:The maximum resident set size (KB) = 660064 +0:The total amount of wall time = 344.076102 +0:The maximum resident set size (KB) = 660120 Test 039 hrrr_control_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1454-gnu/jongkim/FV3_RT/rt_5974/rap_2threads_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/GNU/rap_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1443-gnu/jongkim/FV3_RT/rt_44711/rap_2threads_dyn32_phy32 Checking test 040 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1302,14 +1302,14 @@ Checking test 040 rap_2threads_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 1187.912734 -0:The maximum resident set size (KB) = 702456 +0:The total amount of wall time = 1178.524325 +0:The maximum resident set size (KB) = 702172 Test 040 rap_2threads_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1454-gnu/jongkim/FV3_RT/rt_5974/hrrr_control_2threads_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/GNU/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1443-gnu/jongkim/FV3_RT/rt_44711/hrrr_control_2threads_dyn32_phy32 Checking test 041 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1356,14 +1356,14 @@ Checking test 041 hrrr_control_2threads_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 585.752349 -0:The maximum resident set size (KB) = 699340 +0:The total amount of wall time = 584.648201 +0:The maximum resident set size (KB) = 699480 Test 041 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1454-gnu/jongkim/FV3_RT/rt_5974/hrrr_control_decomp_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/GNU/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1443-gnu/jongkim/FV3_RT/rt_44711/hrrr_control_decomp_dyn32_phy32 Checking test 042 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1410,14 +1410,14 @@ Checking test 042 hrrr_control_decomp_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 344.399137 -0:The maximum resident set size (KB) = 659380 +0:The total amount of wall time = 342.652911 +0:The maximum resident set size (KB) = 659400 Test 042 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1454-gnu/jongkim/FV3_RT/rt_5974/rap_restart_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/GNU/rap_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1443-gnu/jongkim/FV3_RT/rt_44711/rap_restart_dyn32_phy32 Checking test 043 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -1456,14 +1456,14 @@ Checking test 043 rap_restart_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 509.038647 -0:The maximum resident set size (KB) = 499344 +0:The total amount of wall time = 511.290083 +0:The maximum resident set size (KB) = 499424 Test 043 rap_restart_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1454-gnu/jongkim/FV3_RT/rt_5974/hrrr_control_restart_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/GNU/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1443-gnu/jongkim/FV3_RT/rt_44711/hrrr_control_restart_dyn32_phy32 Checking test 044 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -1502,14 +1502,14 @@ Checking test 044 hrrr_control_restart_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 174.285565 -0:The maximum resident set size (KB) = 497196 +0:The total amount of wall time = 174.350017 +0:The maximum resident set size (KB) = 497304 Test 044 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/GNU/rap_control_dyn64_phy32 -working dir = /glade/scratch/jongkim/rt-1454-gnu/jongkim/FV3_RT/rt_5974/rap_control_dyn64_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/GNU/rap_control_dyn64_phy32 +working dir = /glade/scratch/jongkim/rt-1443-gnu/jongkim/FV3_RT/rt_44711/rap_control_dyn64_phy32 Checking test 045 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1556,56 +1556,56 @@ Checking test 045 rap_control_dyn64_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 402.233241 -0:The maximum resident set size (KB) = 680864 +0:The total amount of wall time = 400.828554 +0:The maximum resident set size (KB) = 681080 Test 045 rap_control_dyn64_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/GNU/rap_control_debug_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1454-gnu/jongkim/FV3_RT/rt_5974/rap_control_debug_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/GNU/rap_control_debug_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1443-gnu/jongkim/FV3_RT/rt_44711/rap_control_debug_dyn32_phy32 Checking test 046 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 147.854231 -0:The maximum resident set size (KB) = 679004 +0:The total amount of wall time = 145.311005 +0:The maximum resident set size (KB) = 679120 Test 046 rap_control_debug_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/GNU/hrrr_control_debug_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1454-gnu/jongkim/FV3_RT/rt_5974/hrrr_control_debug_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/GNU/hrrr_control_debug_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1443-gnu/jongkim/FV3_RT/rt_44711/hrrr_control_debug_dyn32_phy32 Checking test 047 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 143.320862 -0:The maximum resident set size (KB) = 675884 +0:The total amount of wall time = 143.212647 +0:The maximum resident set size (KB) = 676100 Test 047 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/GNU/rap_control_debug_dyn64_phy32 -working dir = /glade/scratch/jongkim/rt-1454-gnu/jongkim/FV3_RT/rt_5974/rap_control_dyn64_phy32_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/GNU/rap_control_debug_dyn64_phy32 +working dir = /glade/scratch/jongkim/rt-1443-gnu/jongkim/FV3_RT/rt_44711/rap_control_dyn64_phy32_debug Checking test 048 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 150.615270 -0:The maximum resident set size (KB) = 698668 +0:The total amount of wall time = 150.457389 +0:The maximum resident set size (KB) = 697860 Test 048 rap_control_dyn64_phy32_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/GNU/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1454-gnu/jongkim/FV3_RT/rt_5974/cpld_control_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/GNU/cpld_control_p8 +working dir = /glade/scratch/jongkim/rt-1443-gnu/jongkim/FV3_RT/rt_44711/cpld_control_p8 Checking test 049 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1670,14 +1670,14 @@ Checking test 049 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 485.468687 -0:The maximum resident set size (KB) = 3142016 +0:The total amount of wall time = 496.067756 +0:The maximum resident set size (KB) = 3143256 Test 049 cpld_control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/GNU/cpld_control_c96_noaero_p8 -working dir = /glade/scratch/jongkim/rt-1454-gnu/jongkim/FV3_RT/rt_5974/cpld_control_nowave_noaero_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/GNU/cpld_control_c96_noaero_p8 +working dir = /glade/scratch/jongkim/rt-1443-gnu/jongkim/FV3_RT/rt_44711/cpld_control_nowave_noaero_p8 Checking test 050 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1739,14 +1739,14 @@ Checking test 050 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 244.981732 -0:The maximum resident set size (KB) = 1225080 +0:The total amount of wall time = 246.327704 +0:The maximum resident set size (KB) = 1223736 Test 050 cpld_control_nowave_noaero_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/GNU/cpld_debug_p8 -working dir = /glade/scratch/jongkim/rt-1454-gnu/jongkim/FV3_RT/rt_5974/cpld_debug_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/GNU/cpld_debug_p8 +working dir = /glade/scratch/jongkim/rt-1443-gnu/jongkim/FV3_RT/rt_44711/cpld_debug_p8 Checking test 051 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1799,25 +1799,25 @@ Checking test 051 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 275.170643 -0:The maximum resident set size (KB) = 3159476 +0:The total amount of wall time = 275.968843 +0:The maximum resident set size (KB) = 3159296 Test 051 cpld_debug_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/GNU/datm_cdeps_control_cfsr -working dir = /glade/scratch/jongkim/rt-1454-gnu/jongkim/FV3_RT/rt_5974/datm_cdeps_control_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/GNU/datm_cdeps_control_cfsr +working dir = /glade/scratch/jongkim/rt-1443-gnu/jongkim/FV3_RT/rt_44711/datm_cdeps_control_cfsr Checking test 052 datm_cdeps_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 178.894126 -0:The maximum resident set size (KB) = 681780 +0:The total amount of wall time = 179.547697 +0:The maximum resident set size (KB) = 686584 Test 052 datm_cdeps_control_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Tue Oct 25 08:32:44 MDT 2022 -Elapsed time: 00h:32m:57s. Have a nice day! +Wed Oct 26 18:26:41 MDT 2022 +Elapsed time: 01h:27m:00s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.intel.log b/tests/RegressionTests_cheyenne.intel.log index 5585315c70..0c5a78ef7e 100644 --- a/tests/RegressionTests_cheyenne.intel.log +++ b/tests/RegressionTests_cheyenne.intel.log @@ -1,32 +1,34 @@ -Tue Oct 25 07:58:44 MDT 2022 +Wed Oct 26 16:58:37 MDT 2022 Start Regression test -Compile 001 elapsed time 1208 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 1133 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 445 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 004 elapsed time 395 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 829 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 006 elapsed time 829 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 007 elapsed time 690 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 008 elapsed time 774 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 009 elapsed time 691 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 568 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 1311 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 012 elapsed time 250 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 013 elapsed time 565 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 014 elapsed time 568 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 015 elapsed time 253 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 001 elapsed time 1247 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 1135 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 450 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 004 elapsed time 390 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 822 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 006 elapsed time 855 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 007 elapsed time 684 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 008 elapsed time 790 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 009 elapsed time 699 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 571 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 1340 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 012 elapsed time 245 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 013 elapsed time 570 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 elapsed time 567 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 015 elapsed time 257 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug Compile 016 elapsed time 252 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 017 elapsed time 906 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 018 elapsed time 878 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 019 elapsed time 434 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 020 elapsed time 204 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 021 elapsed time 797 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 022 elapsed time 647 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 627 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/cpld_control_p8 +Compile 017 elapsed time 933 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 018 elapsed time 879 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 019 elapsed time 439 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 020 elapsed time 205 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 021 elapsed time 108 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 022 elapsed time 732 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 802 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 024 elapsed time 653 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 025 elapsed time 634 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/cpld_control_p8 +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/cpld_control_p8 Checking test 001 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -91,14 +93,14 @@ Checking test 001 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 320.814102 -0:The maximum resident set size (KB) = 2718992 +0:The total amount of wall time = 323.981466 +0:The maximum resident set size (KB) = 2718980 Test 001 cpld_control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/cpld_restart_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/cpld_control_p8 +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/cpld_restart_p8 Checking test 002 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -151,14 +153,14 @@ Checking test 002 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 186.324018 -0:The maximum resident set size (KB) = 2581036 +0:The total amount of wall time = 187.984633 +0:The maximum resident set size (KB) = 2581136 Test 002 cpld_restart_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/cpld_2threads_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/cpld_control_p8 +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/cpld_2threads_p8 Checking test 003 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -211,14 +213,14 @@ Checking test 003 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 541.692177 -0:The maximum resident set size (KB) = 3164928 +0:The total amount of wall time = 545.666556 +0:The maximum resident set size (KB) = 3164924 Test 003 cpld_2threads_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/cpld_esmfthreads_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/cpld_control_p8 +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/cpld_esmfthreads_p8 Checking test 004 cpld_esmfthreads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -271,14 +273,14 @@ Checking test 004 cpld_esmfthreads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 258.337212 -0:The maximum resident set size (KB) = 2887000 +0:The total amount of wall time = 260.483832 +0:The maximum resident set size (KB) = 2886352 Test 004 cpld_esmfthreads_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/cpld_decomp_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/cpld_control_p8 +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/cpld_decomp_p8 Checking test 005 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -331,14 +333,14 @@ Checking test 005 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 322.148183 -0:The maximum resident set size (KB) = 2725808 +0:The total amount of wall time = 320.876061 +0:The maximum resident set size (KB) = 2723712 Test 005 cpld_decomp_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/cpld_mpi_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/cpld_control_p8 +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/cpld_mpi_p8 Checking test 006 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -391,14 +393,14 @@ Checking test 006 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 278.206601 -0:The maximum resident set size (KB) = 2686924 +0:The total amount of wall time = 278.942707 +0:The maximum resident set size (KB) = 2687108 Test 006 cpld_mpi_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/cpld_control_ciceC_p8 -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/cpld_control_ciceC_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/cpld_control_ciceC_p8 +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/cpld_control_ciceC_p8 Checking test 007 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -463,14 +465,14 @@ Checking test 007 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 321.422186 -0:The maximum resident set size (KB) = 2719048 +0:The total amount of wall time = 323.264381 +0:The maximum resident set size (KB) = 2719024 Test 007 cpld_control_ciceC_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/cpld_control_c192_p8 -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/cpld_control_c192_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/cpld_control_c192_p8 +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/cpld_control_c192_p8 Checking test 008 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -523,14 +525,14 @@ Checking test 008 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK -0:The total amount of wall time = 1288.429855 -0:The maximum resident set size (KB) = 3024212 +0:The total amount of wall time = 1286.052470 +0:The maximum resident set size (KB) = 3023492 Test 008 cpld_control_c192_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/cpld_control_c192_p8 -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/cpld_restart_c192_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/cpld_control_c192_p8 +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/cpld_restart_c192_p8 Checking test 009 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -583,14 +585,14 @@ Checking test 009 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK -0:The total amount of wall time = 703.342522 -0:The maximum resident set size (KB) = 2951844 +0:The total amount of wall time = 709.591237 +0:The maximum resident set size (KB) = 2952336 Test 009 cpld_restart_c192_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/cpld_control_noaero_p8 -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/cpld_control_noaero_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/cpld_control_noaero_p8 +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/cpld_control_noaero_p8 Checking test 010 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -654,14 +656,14 @@ Checking test 010 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 268.788309 -0:The maximum resident set size (KB) = 1441160 +0:The total amount of wall time = 271.501554 +0:The maximum resident set size (KB) = 1440384 Test 010 cpld_control_noaero_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/cpld_control_c96_noaero_p8 -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/cpld_control_nowave_noaero_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/cpld_control_c96_noaero_p8 +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/cpld_control_nowave_noaero_p8 Checking test 011 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -723,14 +725,14 @@ Checking test 011 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 188.647741 -0:The maximum resident set size (KB) = 1453712 +0:The total amount of wall time = 193.393344 +0:The maximum resident set size (KB) = 1454928 Test 011 cpld_control_nowave_noaero_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/cpld_debug_p8 -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/cpld_debug_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/cpld_debug_p8 +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/cpld_debug_p8 Checking test 012 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -783,14 +785,14 @@ Checking test 012 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 474.175532 -0:The maximum resident set size (KB) = 2790404 +0:The total amount of wall time = 474.407620 +0:The maximum resident set size (KB) = 2790564 Test 012 cpld_debug_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/cpld_debug_noaero_p8 -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/cpld_debug_noaero_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/cpld_debug_noaero_p8 +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/cpld_debug_noaero_p8 Checking test 013 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -842,14 +844,14 @@ Checking test 013 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 345.061049 -0:The maximum resident set size (KB) = 1465164 +0:The total amount of wall time = 346.118966 +0:The maximum resident set size (KB) = 1464808 Test 013 cpld_debug_noaero_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/cpld_control_noaero_p8_agrid -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/cpld_control_noaero_p8_agrid +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/cpld_control_noaero_p8_agrid +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/cpld_control_noaero_p8_agrid Checking test 014 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -911,14 +913,14 @@ Checking test 014 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 253.316523 -0:The maximum resident set size (KB) = 1458004 +0:The total amount of wall time = 254.359639 +0:The maximum resident set size (KB) = 1458612 Test 014 cpld_control_noaero_p8_agrid PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/cpld_control_c48 -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/cpld_control_c48 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/cpld_control_c48 +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/cpld_control_c48 Checking test 015 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -968,14 +970,14 @@ Checking test 015 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 604.092179 -0:The maximum resident set size (KB) = 2582924 +0:The total amount of wall time = 600.842301 +0:The maximum resident set size (KB) = 2582880 Test 015 cpld_control_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/cpld_warmstart_c48 -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/cpld_warmstart_c48 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/cpld_warmstart_c48 +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/cpld_warmstart_c48 Checking test 016 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1025,14 +1027,14 @@ Checking test 016 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -0:The total amount of wall time = 161.531250 -0:The maximum resident set size (KB) = 2599852 +0:The total amount of wall time = 160.722698 +0:The maximum resident set size (KB) = 2599120 Test 016 cpld_warmstart_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/cpld_warmstart_c48 -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/cpld_restart_c48 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/cpld_warmstart_c48 +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/cpld_restart_c48 Checking test 017 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1082,14 +1084,14 @@ Checking test 017 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -0:The total amount of wall time = 83.697173 -0:The maximum resident set size (KB) = 2016712 +0:The total amount of wall time = 83.876712 +0:The maximum resident set size (KB) = 2016264 Test 017 cpld_restart_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/control -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/control +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/control +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/control Checking test 018 control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1136,14 +1138,14 @@ Checking test 018 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 147.228390 -0:The maximum resident set size (KB) = 455776 +0:The total amount of wall time = 149.598204 +0:The maximum resident set size (KB) = 456280 Test 018 control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/control -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/control_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/control +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/control_decomp Checking test 019 control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1186,14 +1188,14 @@ Checking test 019 control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 153.167860 -0:The maximum resident set size (KB) = 454520 +0:The total amount of wall time = 153.959603 +0:The maximum resident set size (KB) = 454004 Test 019 control_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/control -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/control_2dwrtdecomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/control +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/control_2dwrtdecomp Checking test 020 control_2dwrtdecomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1204,14 +1206,14 @@ Checking test 020 control_2dwrtdecomp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 145.465684 -0:The maximum resident set size (KB) = 456464 +0:The total amount of wall time = 145.910881 +0:The maximum resident set size (KB) = 456764 Test 020 control_2dwrtdecomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/control -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/control_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/control +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/control_2threads Checking test 021 control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1254,14 +1256,14 @@ Checking test 021 control_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 379.783069 -0:The maximum resident set size (KB) = 499508 +0:The total amount of wall time = 379.694364 +0:The maximum resident set size (KB) = 503864 Test 021 control_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/control -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/control_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/control +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/control_restart Checking test 022 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1300,14 +1302,14 @@ Checking test 022 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 76.008676 -0:The maximum resident set size (KB) = 195912 +0:The total amount of wall time = 77.677538 +0:The maximum resident set size (KB) = 196036 Test 022 control_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/control -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/control_fhzero +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/control +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/control_fhzero Checking test 023 control_fhzero results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -1350,14 +1352,14 @@ Checking test 023 control_fhzero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 137.655558 -0:The maximum resident set size (KB) = 455856 +0:The total amount of wall time = 137.817674 +0:The maximum resident set size (KB) = 456048 Test 023 control_fhzero PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/control_CubedSphereGrid -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/control_CubedSphereGrid +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/control_CubedSphereGrid +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/control_CubedSphereGrid Checking test 024 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1384,28 +1386,28 @@ Checking test 024 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -0:The total amount of wall time = 143.549558 -0:The maximum resident set size (KB) = 455840 +0:The total amount of wall time = 143.913796 +0:The maximum resident set size (KB) = 455560 Test 024 control_CubedSphereGrid PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/control_CubedSphereGrid_parallel -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/control_CubedSphereGrid_parallel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/control_CubedSphereGrid_parallel +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/control_CubedSphereGrid_parallel Checking test 025 control_CubedSphereGrid_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf024.nc .........OK -0:The total amount of wall time = 139.399704 -0:The maximum resident set size (KB) = 455800 +0:The total amount of wall time = 139.872221 +0:The maximum resident set size (KB) = 455660 Test 025 control_CubedSphereGrid_parallel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/control_latlon -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/control_latlon +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/control_latlon +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/control_latlon Checking test 026 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1416,17 +1418,17 @@ Checking test 026 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 145.487031 -0:The maximum resident set size (KB) = 455864 +0:The total amount of wall time = 146.002476 +0:The maximum resident set size (KB) = 456384 Test 026 control_latlon PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/control_wrtGauss_netcdf_parallel -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/control_wrtGauss_netcdf_parallel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/control_wrtGauss_netcdf_parallel +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/control_wrtGauss_netcdf_parallel Checking test 027 control_wrtGauss_netcdf_parallel results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK @@ -1434,14 +1436,14 @@ Checking test 027 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 147.766513 -0:The maximum resident set size (KB) = 455972 +0:The total amount of wall time = 149.163330 +0:The maximum resident set size (KB) = 456188 Test 027 control_wrtGauss_netcdf_parallel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/control_c48 -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/control_c48 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/control_c48 +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/control_c48 Checking test 028 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1480,14 +1482,14 @@ Checking test 028 control_c48 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 443.386214 -0:The maximum resident set size (KB) = 627836 +0:The total amount of wall time = 445.187992 +0:The maximum resident set size (KB) = 627912 Test 028 control_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/control_c192 -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/control_c192 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/control_c192 +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/control_c192 Checking test 029 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1498,14 +1500,14 @@ Checking test 029 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 597.760950 -0:The maximum resident set size (KB) = 560608 +0:The total amount of wall time = 592.494456 +0:The maximum resident set size (KB) = 560716 Test 029 control_c192 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/control_c384 -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/control_c384 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/control_c384 +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/control_c384 Checking test 030 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1516,14 +1518,14 @@ Checking test 030 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 1315.156925 -0:The maximum resident set size (KB) = 836348 +0:The total amount of wall time = 1310.970396 +0:The maximum resident set size (KB) = 836992 Test 030 control_c384 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/control_c384gdas -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/control_c384gdas +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/control_c384gdas +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/control_c384gdas Checking test 031 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1566,14 +1568,14 @@ Checking test 031 control_c384gdas results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 1328.216935 -0:The maximum resident set size (KB) = 970496 +0:The total amount of wall time = 1317.000376 +0:The maximum resident set size (KB) = 970368 Test 031 control_c384gdas PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/control_c384_progsigma -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/control_c384_progsigma +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/control_c384_progsigma +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/control_c384_progsigma Checking test 032 control_c384_progsigma results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1584,14 +1586,14 @@ Checking test 032 control_c384_progsigma results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 1343.054284 -0:The maximum resident set size (KB) = 854376 +0:The total amount of wall time = 1331.627378 +0:The maximum resident set size (KB) = 855440 Test 032 control_c384_progsigma PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/control_stochy -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/control_stochy +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/control_stochy +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/control_stochy Checking test 033 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1602,28 +1604,28 @@ Checking test 033 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 97.068965 -0:The maximum resident set size (KB) = 460020 +0:The total amount of wall time = 96.219937 +0:The maximum resident set size (KB) = 460216 Test 033 control_stochy PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/control_stochy -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/control_stochy_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/control_stochy +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/control_stochy_restart Checking test 034 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 51.920211 -0:The maximum resident set size (KB) = 226072 +0:The total amount of wall time = 51.726221 +0:The maximum resident set size (KB) = 226456 Test 034 control_stochy_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/control_lndp -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/control_lndp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/control_lndp +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/control_lndp Checking test 035 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1634,14 +1636,14 @@ Checking test 035 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 89.140717 -0:The maximum resident set size (KB) = 459588 +0:The total amount of wall time = 89.724186 +0:The maximum resident set size (KB) = 460360 Test 035 control_lndp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/control_iovr4 -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/control_iovr4 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/control_iovr4 +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/control_iovr4 Checking test 036 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1656,14 +1658,14 @@ Checking test 036 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 146.704988 -0:The maximum resident set size (KB) = 455860 +0:The total amount of wall time = 147.554633 +0:The maximum resident set size (KB) = 456072 Test 036 control_iovr4 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/control_iovr5 -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/control_iovr5 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/control_iovr5 +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/control_iovr5 Checking test 037 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1678,14 +1680,14 @@ Checking test 037 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 148.288341 -0:The maximum resident set size (KB) = 455568 +0:The total amount of wall time = 147.394066 +0:The maximum resident set size (KB) = 456048 Test 037 control_iovr5 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/control_p8 -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/control_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/control_p8 +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/control_p8 Checking test 038 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1732,14 +1734,14 @@ Checking test 038 control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 179.016865 -0:The maximum resident set size (KB) = 1426212 +0:The total amount of wall time = 179.042153 +0:The maximum resident set size (KB) = 1426112 Test 038 control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/control_p8_lndp -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/control_p8_lndp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/control_p8_lndp +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/control_p8_lndp Checking test 039 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1758,14 +1760,14 @@ Checking test 039 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -0:The total amount of wall time = 331.725853 -0:The maximum resident set size (KB) = 1426756 +0:The total amount of wall time = 330.385859 +0:The maximum resident set size (KB) = 1426680 Test 039 control_p8_lndp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/control_p8 -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/control_restart_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/control_p8 +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/control_restart_p8 Checking test 040 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1804,14 +1806,14 @@ Checking test 040 control_restart_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 94.268724 -0:The maximum resident set size (KB) = 583024 +0:The total amount of wall time = 95.640960 +0:The maximum resident set size (KB) = 582924 Test 040 control_restart_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/control_p8 -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/control_decomp_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/control_p8 +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/control_decomp_p8 Checking test 041 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1854,14 +1856,14 @@ Checking test 041 control_decomp_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 184.239140 -0:The maximum resident set size (KB) = 1420116 +0:The total amount of wall time = 183.580474 +0:The maximum resident set size (KB) = 1420356 Test 041 control_decomp_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/control_p8 -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/control_2threads_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/control_p8 +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/control_2threads_p8 Checking test 042 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1904,14 +1906,14 @@ Checking test 042 control_2threads_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 490.587463 -0:The maximum resident set size (KB) = 1501992 +0:The total amount of wall time = 490.646905 +0:The maximum resident set size (KB) = 1502092 Test 042 control_2threads_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/control_p8_rrtmgp -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/control_p8_rrtmgp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/control_p8_rrtmgp +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/control_p8_rrtmgp Checking test 043 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1958,14 +1960,14 @@ Checking test 043 control_p8_rrtmgp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 245.950802 -0:The maximum resident set size (KB) = 1541868 +0:The total amount of wall time = 245.514712 +0:The maximum resident set size (KB) = 1541908 Test 043 control_p8_rrtmgp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/merra2_thompson -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/merra2_thompson +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/merra2_thompson +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/merra2_thompson Checking test 044 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2012,14 +2014,14 @@ Checking test 044 merra2_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 184.158847 -0:The maximum resident set size (KB) = 1432564 +0:The total amount of wall time = 184.008198 +0:The maximum resident set size (KB) = 1432576 Test 044 merra2_thompson PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/fv3_regional_control -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/regional_control +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/fv3_regional_control +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/regional_control Checking test 045 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -2030,28 +2032,28 @@ Checking test 045 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -0:The total amount of wall time = 371.479969 -0:The maximum resident set size (KB) = 565688 +0:The total amount of wall time = 364.324412 +0:The maximum resident set size (KB) = 566776 Test 045 regional_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/fv3_regional_control -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/regional_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/fv3_regional_control +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/regional_restart Checking test 046 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 = 203.571314 -0:The maximum resident set size (KB) = 557008 +0:The total amount of wall time = 203.156114 +0:The maximum resident set size (KB) = 556868 Test 046 regional_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/fv3_regional_control -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/regional_control_2dwrtdecomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/fv3_regional_control +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/regional_control_2dwrtdecomp Checking test 047 regional_control_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -2062,14 +2064,14 @@ Checking test 047 regional_control_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -0:The total amount of wall time = 373.486831 -0:The maximum resident set size (KB) = 564692 +0:The total amount of wall time = 371.033523 +0:The maximum resident set size (KB) = 565752 Test 047 regional_control_2dwrtdecomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/fv3_regional_noquilt -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/regional_noquilt +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/fv3_regional_noquilt +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/regional_noquilt Checking test 048 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2077,14 +2079,14 @@ Checking test 048 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 = 388.192543 -0:The maximum resident set size (KB) = 558848 +0:The total amount of wall time = 382.831373 +0:The maximum resident set size (KB) = 558772 Test 048 regional_noquilt PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/fv3_regional_control -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/regional_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/fv3_regional_control +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/regional_2threads Checking test 049 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -2095,28 +2097,28 @@ Checking test 049 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -0:The total amount of wall time = 1115.181295 -0:The maximum resident set size (KB) = 558376 +0:The total amount of wall time = 1104.846447 +0:The maximum resident set size (KB) = 559420 Test 049 regional_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/fv3_regional_netcdf_parallel -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/regional_netcdf_parallel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/fv3_regional_netcdf_parallel +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/regional_netcdf_parallel Checking test 050 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK -0:The total amount of wall time = 367.047923 -0:The maximum resident set size (KB) = 555792 +0:The total amount of wall time = 366.414022 +0:The maximum resident set size (KB) = 556984 Test 050 regional_netcdf_parallel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/fv3_regional_3km -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/regional_3km +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/fv3_regional_3km +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/regional_3km Checking test 051 regional_3km results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2127,14 +2129,14 @@ Checking test 051 regional_3km results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 302.574181 -0:The maximum resident set size (KB) = 592404 +0:The total amount of wall time = 299.134157 +0:The maximum resident set size (KB) = 592484 Test 051 regional_3km PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/fv3_regional_3km -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/regional_3km_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/fv3_regional_3km +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/regional_3km_decomp Checking test 052 regional_3km_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2145,14 +2147,14 @@ Checking test 052 regional_3km_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 320.228717 -0:The maximum resident set size (KB) = 600244 +0:The total amount of wall time = 318.096361 +0:The maximum resident set size (KB) = 602880 Test 052 regional_3km_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_control -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/rap_control +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_control +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/rap_control Checking test 053 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2199,14 +2201,14 @@ Checking test 053 rap_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 460.762475 -0:The maximum resident set size (KB) = 825440 +0:The total amount of wall time = 461.684191 +0:The maximum resident set size (KB) = 825668 Test 053 rap_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_rrtmgp -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/rap_rrtmgp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_rrtmgp +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/rap_rrtmgp Checking test 054 rap_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2253,14 +2255,14 @@ Checking test 054 rap_rrtmgp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 518.565017 -0:The maximum resident set size (KB) = 950988 +0:The total amount of wall time = 521.275136 +0:The maximum resident set size (KB) = 951364 Test 054 rap_rrtmgp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/regional_spp_sppt_shum_skeb -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/regional_spp_sppt_shum_skeb +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/regional_spp_sppt_shum_skeb +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/regional_spp_sppt_shum_skeb Checking test 055 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2271,14 +2273,14 @@ Checking test 055 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -0:The total amount of wall time = 710.841343 -0:The maximum resident set size (KB) = 934680 +0:The total amount of wall time = 710.608987 +0:The maximum resident set size (KB) = 932996 Test 055 regional_spp_sppt_shum_skeb PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_control -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/rap_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_control +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/rap_decomp Checking test 056 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2325,14 +2327,14 @@ Checking test 056 rap_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 485.925351 -0:The maximum resident set size (KB) = 824848 +0:The total amount of wall time = 486.777515 +0:The maximum resident set size (KB) = 824872 Test 056 rap_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_control -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/rap_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_control +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/rap_2threads Checking test 057 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2379,14 +2381,14 @@ Checking test 057 rap_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 1099.729562 -0:The maximum resident set size (KB) = 884492 +0:The total amount of wall time = 1098.362145 +0:The maximum resident set size (KB) = 884208 Test 057 rap_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_control -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/rap_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_control +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/rap_restart Checking test 058 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2425,14 +2427,14 @@ Checking test 058 rap_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 233.688143 -0:The maximum resident set size (KB) = 570852 +0:The total amount of wall time = 234.165122 +0:The maximum resident set size (KB) = 571620 Test 058 rap_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_sfcdiff -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/rap_sfcdiff +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_sfcdiff +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/rap_sfcdiff Checking test 059 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2479,14 +2481,14 @@ Checking test 059 rap_sfcdiff results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 452.590989 -0:The maximum resident set size (KB) = 825820 +0:The total amount of wall time = 452.645481 +0:The maximum resident set size (KB) = 825412 Test 059 rap_sfcdiff PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_sfcdiff -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/rap_sfcdiff_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_sfcdiff +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/rap_sfcdiff_decomp Checking test 060 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2533,14 +2535,14 @@ Checking test 060 rap_sfcdiff_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 478.819654 -0:The maximum resident set size (KB) = 824596 +0:The total amount of wall time = 483.842513 +0:The maximum resident set size (KB) = 824952 Test 060 rap_sfcdiff_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_sfcdiff -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/rap_sfcdiff_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_sfcdiff +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/rap_sfcdiff_restart Checking test 061 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2579,14 +2581,14 @@ Checking test 061 rap_sfcdiff_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 341.671481 -0:The maximum resident set size (KB) = 572120 +0:The total amount of wall time = 340.819451 +0:The maximum resident set size (KB) = 571696 Test 061 rap_sfcdiff_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/hrrr_control -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/hrrr_control +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/hrrr_control +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/hrrr_control Checking test 062 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2633,14 +2635,14 @@ Checking test 062 hrrr_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 436.887649 -0:The maximum resident set size (KB) = 822396 +0:The total amount of wall time = 435.785644 +0:The maximum resident set size (KB) = 822340 Test 062 hrrr_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/hrrr_control -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/hrrr_control_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/hrrr_control +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/hrrr_control_decomp Checking test 063 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2687,14 +2689,14 @@ Checking test 063 hrrr_control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 455.899890 -0:The maximum resident set size (KB) = 822208 +0:The total amount of wall time = 457.188015 +0:The maximum resident set size (KB) = 823996 Test 063 hrrr_control_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/hrrr_control -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/hrrr_control_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/hrrr_control +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/hrrr_control_2threads Checking test 064 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2741,14 +2743,14 @@ Checking test 064 hrrr_control_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 1035.852357 -0:The maximum resident set size (KB) = 879580 +0:The total amount of wall time = 1035.283073 +0:The maximum resident set size (KB) = 878252 Test 064 hrrr_control_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/hrrr_control -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/hrrr_control_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/hrrr_control +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/hrrr_control_restart Checking test 065 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2787,14 +2789,14 @@ Checking test 065 hrrr_control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 331.051142 -0:The maximum resident set size (KB) = 567732 +0:The total amount of wall time = 330.500122 +0:The maximum resident set size (KB) = 569012 Test 065 hrrr_control_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/rrfs_v1beta -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/rrfs_v1beta +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/rrfs_v1beta +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/rrfs_v1beta Checking test 066 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2841,14 +2843,14 @@ Checking test 066 rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 449.003383 -0:The maximum resident set size (KB) = 820896 +0:The total amount of wall time = 447.555278 +0:The maximum resident set size (KB) = 820992 Test 066 rrfs_v1beta PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/rrfs_v1nssl -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/rrfs_v1nssl +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/rrfs_v1nssl +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/rrfs_v1nssl Checking test 067 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2863,14 +2865,14 @@ Checking test 067 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 560.944793 -0:The maximum resident set size (KB) = 509572 +0:The total amount of wall time = 558.235416 +0:The maximum resident set size (KB) = 509540 Test 067 rrfs_v1nssl PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/rrfs_v1nssl_nohailnoccn +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/rrfs_v1nssl_nohailnoccn Checking test 068 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2885,14 +2887,14 @@ Checking test 068 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 537.859965 -0:The maximum resident set size (KB) = 503092 +0:The total amount of wall time = 538.316547 +0:The maximum resident set size (KB) = 503304 Test 068 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/rrfs_conus13km_hrrr_warm -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/rrfs_conus13km_hrrr_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/rrfs_conus13km_hrrr_warm +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/rrfs_conus13km_hrrr_warm Checking test 069 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2901,14 +2903,14 @@ Checking test 069 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 128.245256 -0:The maximum resident set size (KB) = 640912 +0:The total amount of wall time = 128.142011 +0:The maximum resident set size (KB) = 641164 Test 069 rrfs_conus13km_hrrr_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/rrfs_smoke_conus13km_hrrr_warm Checking test 070 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2917,14 +2919,14 @@ Checking test 070 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 142.587267 -0:The maximum resident set size (KB) = 657084 +0:The total amount of wall time = 144.183449 +0:The maximum resident set size (KB) = 657544 Test 070 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/rrfs_conus13km_radar_tten_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/rrfs_conus13km_radar_tten_warm Checking test 071 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2933,14 +2935,14 @@ Checking test 071 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 129.966919 -0:The maximum resident set size (KB) = 642680 +0:The total amount of wall time = 127.204180 +0:The maximum resident set size (KB) = 643020 Test 071 rrfs_conus13km_radar_tten_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/rrfs_conus13km_hrrr_warm -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/rrfs_conus13km_hrrr_warm_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/rrfs_conus13km_hrrr_warm +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/rrfs_conus13km_hrrr_warm_2threads Checking test 072 rrfs_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2949,14 +2951,14 @@ Checking test 072 rrfs_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 299.795101 -0:The maximum resident set size (KB) = 642708 +0:The total amount of wall time = 304.378983 +0:The maximum resident set size (KB) = 643372 Test 072 rrfs_conus13km_hrrr_warm_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/rrfs_conus13km_radar_tten_warm_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/rrfs_conus13km_radar_tten_warm_2threads Checking test 073 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2965,14 +2967,14 @@ Checking test 073 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 301.231479 -0:The maximum resident set size (KB) = 645524 +0:The total amount of wall time = 301.006041 +0:The maximum resident set size (KB) = 646072 Test 073 rrfs_conus13km_radar_tten_warm_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/control_csawmg -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/control_csawmg +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/control_csawmg +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/control_csawmg Checking test 074 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2983,14 +2985,14 @@ Checking test 074 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 395.677725 -0:The maximum resident set size (KB) = 533120 +0:The total amount of wall time = 395.146972 +0:The maximum resident set size (KB) = 533340 Test 074 control_csawmg PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/control_csawmgt -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/control_csawmgt +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/control_csawmgt +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/control_csawmgt Checking test 075 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3001,14 +3003,14 @@ Checking test 075 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 392.952190 -0:The maximum resident set size (KB) = 533160 +0:The total amount of wall time = 374.521281 +0:The maximum resident set size (KB) = 533324 Test 075 control_csawmgt PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/control_ras -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/control_ras +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/control_ras +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/control_ras Checking test 076 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3019,82 +3021,82 @@ Checking test 076 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 201.635879 -0:The maximum resident set size (KB) = 491704 +0:The total amount of wall time = 205.381913 +0:The maximum resident set size (KB) = 491104 Test 076 control_ras PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/control_wam -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/control_wam +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/control_wam +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/control_wam Checking test 077 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -0:The total amount of wall time = 124.814464 -0:The maximum resident set size (KB) = 207764 +0:The total amount of wall time = 125.543086 +0:The maximum resident set size (KB) = 207412 Test 077 control_wam PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/rrfs_conus13km_hrrr_warm_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/rrfs_conus13km_hrrr_warm_debug Checking test 078 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 769.586295 -0:The maximum resident set size (KB) = 671756 +0:The total amount of wall time = 757.021188 +0:The maximum resident set size (KB) = 671916 Test 078 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/rrfs_conus13km_radar_tten_warm_debug -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/rrfs_conus13km_radar_tten_warm_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/rrfs_conus13km_radar_tten_warm_debug +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/rrfs_conus13km_radar_tten_warm_debug Checking test 079 rrfs_conus13km_radar_tten_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 766.010887 -0:The maximum resident set size (KB) = 674884 +0:The total amount of wall time = 758.293757 +0:The maximum resident set size (KB) = 674956 Test 079 rrfs_conus13km_radar_tten_warm_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/control_debug -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/control_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/control_debug +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/control_debug Checking test 080 control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 165.245789 -0:The maximum resident set size (KB) = 623416 +0:The total amount of wall time = 160.885495 +0:The maximum resident set size (KB) = 623908 Test 080 control_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/control_debug -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/control_2threads_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/control_debug +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/control_2threads_debug Checking test 081 control_2threads_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 280.302710 -0:The maximum resident set size (KB) = 669676 +0:The total amount of wall time = 279.321777 +0:The maximum resident set size (KB) = 670968 Test 081 control_2threads_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/control_CubedSphereGrid_debug -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/control_CubedSphereGrid_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/control_CubedSphereGrid_debug +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/control_CubedSphereGrid_debug Checking test 082 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3121,348 +3123,348 @@ Checking test 082 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -0:The total amount of wall time = 176.044296 -0:The maximum resident set size (KB) = 623596 +0:The total amount of wall time = 174.857480 +0:The maximum resident set size (KB) = 624304 Test 082 control_CubedSphereGrid_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/control_wrtGauss_netcdf_parallel_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/control_wrtGauss_netcdf_parallel_debug Checking test 083 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 164.145722 -0:The maximum resident set size (KB) = 623516 +0:The total amount of wall time = 165.225202 +0:The maximum resident set size (KB) = 623968 Test 083 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/control_stochy_debug -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/control_stochy_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/control_stochy_debug +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/control_stochy_debug Checking test 084 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 187.313240 -0:The maximum resident set size (KB) = 629904 +0:The total amount of wall time = 184.235364 +0:The maximum resident set size (KB) = 631420 Test 084 control_stochy_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/control_lndp_debug -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/control_lndp_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/control_lndp_debug +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/control_lndp_debug Checking test 085 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 164.695806 -0:The maximum resident set size (KB) = 628532 +0:The total amount of wall time = 164.903216 +0:The maximum resident set size (KB) = 631484 Test 085 control_lndp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/control_csawmg_debug -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/control_csawmg_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/control_csawmg_debug +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/control_csawmg_debug Checking test 086 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 261.205437 -0:The maximum resident set size (KB) = 673588 +0:The total amount of wall time = 257.142673 +0:The maximum resident set size (KB) = 675352 Test 086 control_csawmg_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/control_csawmgt_debug -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/control_csawmgt_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/control_csawmgt_debug +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/control_csawmgt_debug Checking test 087 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 257.010086 -0:The maximum resident set size (KB) = 672888 +0:The total amount of wall time = 254.208434 +0:The maximum resident set size (KB) = 675364 Test 087 control_csawmgt_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/control_ras_debug -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/control_ras_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/control_ras_debug +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/control_ras_debug Checking test 088 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 166.430615 -0:The maximum resident set size (KB) = 636472 +0:The total amount of wall time = 167.714108 +0:The maximum resident set size (KB) = 637024 Test 088 control_ras_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/control_diag_debug -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/control_diag_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/control_diag_debug +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/control_diag_debug Checking test 089 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 176.793176 -0:The maximum resident set size (KB) = 681844 +0:The total amount of wall time = 169.411762 +0:The maximum resident set size (KB) = 681556 Test 089 control_diag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/control_debug_p8 -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/control_debug_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/control_debug_p8 +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/control_debug_p8 Checking test 090 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 184.396113 -0:The maximum resident set size (KB) = 1448500 +0:The total amount of wall time = 184.002310 +0:The maximum resident set size (KB) = 1449176 Test 090 control_debug_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/fv3_regional_debug -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/regional_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/fv3_regional_debug +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/regional_debug Checking test 091 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -0:The total amount of wall time = 260.535424 -0:The maximum resident set size (KB) = 590752 +0:The total amount of wall time = 260.337295 +0:The maximum resident set size (KB) = 591664 Test 091 regional_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_control_debug -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/rap_control_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_control_debug +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/rap_control_debug Checking test 092 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 293.548828 -0:The maximum resident set size (KB) = 992380 +0:The total amount of wall time = 292.935758 +0:The maximum resident set size (KB) = 992072 Test 092 rap_control_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/hrrr_control_debug -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/hrrr_control_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/hrrr_control_debug +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/hrrr_control_debug Checking test 093 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 292.388020 -0:The maximum resident set size (KB) = 988516 +0:The total amount of wall time = 287.930121 +0:The maximum resident set size (KB) = 988540 Test 093 hrrr_control_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_control_debug -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/rap_unified_drag_suite_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_control_debug +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/rap_unified_drag_suite_debug Checking test 094 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 299.568957 -0:The maximum resident set size (KB) = 992268 +0:The total amount of wall time = 292.120700 +0:The maximum resident set size (KB) = 991804 Test 094 rap_unified_drag_suite_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_diag_debug -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/rap_diag_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_diag_debug +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/rap_diag_debug Checking test 095 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 308.908123 -0:The maximum resident set size (KB) = 1075992 +0:The total amount of wall time = 306.164964 +0:The maximum resident set size (KB) = 1075276 Test 095 rap_diag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_cires_ugwp_debug -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/rap_cires_ugwp_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_cires_ugwp_debug +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/rap_cires_ugwp_debug Checking test 096 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 299.576886 -0:The maximum resident set size (KB) = 990644 +0:The total amount of wall time = 306.511566 +0:The maximum resident set size (KB) = 990352 Test 096 rap_cires_ugwp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_cires_ugwp_debug -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/rap_unified_ugwp_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_cires_ugwp_debug +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/rap_unified_ugwp_debug Checking test 097 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 299.887873 -0:The maximum resident set size (KB) = 992164 +0:The total amount of wall time = 297.981630 +0:The maximum resident set size (KB) = 991800 Test 097 rap_unified_ugwp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_lndp_debug -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/rap_lndp_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_lndp_debug +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/rap_lndp_debug Checking test 098 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 298.529226 -0:The maximum resident set size (KB) = 993044 +0:The total amount of wall time = 294.335682 +0:The maximum resident set size (KB) = 992764 Test 098 rap_lndp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_flake_debug -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/rap_flake_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_flake_debug +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/rap_flake_debug Checking test 099 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 297.020801 -0:The maximum resident set size (KB) = 991520 +0:The total amount of wall time = 292.862550 +0:The maximum resident set size (KB) = 991612 Test 099 rap_flake_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_progcld_thompson_debug -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/rap_progcld_thompson_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_progcld_thompson_debug +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/rap_progcld_thompson_debug Checking test 100 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 296.912311 -0:The maximum resident set size (KB) = 992356 +0:The total amount of wall time = 295.260806 +0:The maximum resident set size (KB) = 992400 Test 100 rap_progcld_thompson_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_noah_debug -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/rap_noah_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_noah_debug +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/rap_noah_debug Checking test 101 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 288.626736 -0:The maximum resident set size (KB) = 990468 +0:The total amount of wall time = 286.225192 +0:The maximum resident set size (KB) = 990488 Test 101 rap_noah_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_rrtmgp_debug -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/rap_rrtmgp_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_rrtmgp_debug +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/rap_rrtmgp_debug Checking test 102 rap_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 491.873797 -0:The maximum resident set size (KB) = 1121216 +0:The total amount of wall time = 487.789863 +0:The maximum resident set size (KB) = 1121352 Test 102 rap_rrtmgp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_sfcdiff_debug -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/rap_sfcdiff_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_sfcdiff_debug +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/rap_sfcdiff_debug Checking test 103 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 296.301064 -0:The maximum resident set size (KB) = 991840 +0:The total amount of wall time = 292.169643 +0:The maximum resident set size (KB) = 991852 Test 103 rap_sfcdiff_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/rap_noah_sfcdiff_cires_ugwp_debug Checking test 104 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 482.503077 -0:The maximum resident set size (KB) = 990340 +0:The total amount of wall time = 479.484883 +0:The maximum resident set size (KB) = 990716 Test 104 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/rrfs_v1beta_debug -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/rrfs_v1beta_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/rrfs_v1beta_debug +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/rrfs_v1beta_debug Checking test 105 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 288.670054 -0:The maximum resident set size (KB) = 987720 +0:The total amount of wall time = 287.967791 +0:The maximum resident set size (KB) = 987816 Test 105 rrfs_v1beta_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/control_wam_debug -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/control_wam_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/control_wam_debug +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/control_wam_debug Checking test 106 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -0:The total amount of wall time = 302.679196 -0:The maximum resident set size (KB) = 241060 +0:The total amount of wall time = 296.928448 +0:The maximum resident set size (KB) = 241268 Test 106 control_wam_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/regional_spp_sppt_shum_skeb_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 107 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3473,14 +3475,14 @@ Checking test 107 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -0:The total amount of wall time = 662.164866 -0:The maximum resident set size (KB) = 830924 +0:The total amount of wall time = 659.815604 +0:The maximum resident set size (KB) = 831608 Test 107 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/rap_control_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/rap_control_dyn32_phy32 Checking test 108 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3527,14 +3529,14 @@ Checking test 108 rap_control_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 368.136441 -0:The maximum resident set size (KB) = 709320 +0:The total amount of wall time = 369.844540 +0:The maximum resident set size (KB) = 709440 Test 108 rap_control_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/hrrr_control_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/hrrr_control_dyn32_phy32 Checking test 109 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3581,14 +3583,14 @@ Checking test 109 hrrr_control_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 197.110957 -0:The maximum resident set size (KB) = 707404 +0:The total amount of wall time = 193.546595 +0:The maximum resident set size (KB) = 707708 Test 109 hrrr_control_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/rap_2threads_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/rap_2threads_dyn32_phy32 Checking test 110 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3635,14 +3637,14 @@ Checking test 110 rap_2threads_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 915.242703 -0:The maximum resident set size (KB) = 746124 +0:The total amount of wall time = 915.577535 +0:The maximum resident set size (KB) = 750976 Test 110 rap_2threads_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/hrrr_control_2threads_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/hrrr_control_2threads_dyn32_phy32 Checking test 111 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3689,14 +3691,14 @@ Checking test 111 hrrr_control_2threads_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 485.435298 -0:The maximum resident set size (KB) = 746948 +0:The total amount of wall time = 485.570531 +0:The maximum resident set size (KB) = 744696 Test 111 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/hrrr_control_decomp_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/hrrr_control_decomp_dyn32_phy32 Checking test 112 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3743,14 +3745,14 @@ Checking test 112 hrrr_control_decomp_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 207.803267 -0:The maximum resident set size (KB) = 705976 +0:The total amount of wall time = 207.821230 +0:The maximum resident set size (KB) = 706668 Test 112 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/rap_restart_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/rap_restart_dyn32_phy32 Checking test 113 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3789,14 +3791,14 @@ Checking test 113 rap_restart_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 280.045180 -0:The maximum resident set size (KB) = 543684 +0:The total amount of wall time = 277.682223 +0:The maximum resident set size (KB) = 543576 Test 113 rap_restart_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/hrrr_control_restart_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/hrrr_control_restart_dyn32_phy32 Checking test 114 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3835,14 +3837,14 @@ Checking test 114 hrrr_control_restart_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 100.215579 -0:The maximum resident set size (KB) = 541600 +0:The total amount of wall time = 100.750371 +0:The maximum resident set size (KB) = 540808 Test 114 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_control_dyn64_phy32 -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/rap_control_dyn64_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_control_dyn64_phy32 +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/rap_control_dyn64_phy32 Checking test 115 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3889,81 +3891,81 @@ Checking test 115 rap_control_dyn64_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 257.996229 -0:The maximum resident set size (KB) = 726708 +0:The total amount of wall time = 259.191055 +0:The maximum resident set size (KB) = 727836 Test 115 rap_control_dyn64_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_control_debug_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/rap_control_debug_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_control_debug_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/rap_control_debug_dyn32_phy32 Checking test 116 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 289.466709 -0:The maximum resident set size (KB) = 877944 +0:The total amount of wall time = 286.702845 +0:The maximum resident set size (KB) = 877592 Test 116 rap_control_debug_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/hrrr_control_debug_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/hrrr_control_debug_dyn32_phy32 Checking test 117 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 285.223698 -0:The maximum resident set size (KB) = 875104 +0:The total amount of wall time = 282.111611 +0:The maximum resident set size (KB) = 875140 Test 117 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_control_debug_dyn64_phy32 -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/rap_control_dyn64_phy32_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_control_debug_dyn64_phy32 +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/rap_control_dyn64_phy32_debug Checking test 118 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 294.281064 -0:The maximum resident set size (KB) = 894704 +0:The total amount of wall time = 290.868293 +0:The maximum resident set size (KB) = 894092 Test 118 rap_control_dyn64_phy32_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/hafs_regional_atm -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/hafs_regional_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/hafs_regional_atm +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/hafs_regional_atm Checking test 119 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -0:The total amount of wall time = 639.004246 -0:The maximum resident set size (KB) = 692288 +0:The total amount of wall time = 631.369545 +0:The maximum resident set size (KB) = 691228 Test 119 hafs_regional_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/hafs_regional_atm_thompson_gfdlsf +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/hafs_regional_atm_thompson_gfdlsf Checking test 120 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -0:The total amount of wall time = 673.878524 -0:The maximum resident set size (KB) = 1055648 +0:The total amount of wall time = 672.649059 +0:The maximum resident set size (KB) = 1050712 Test 120 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/hafs_regional_atm_ocn -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/hafs_regional_atm_ocn +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/hafs_regional_atm_ocn +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/hafs_regional_atm_ocn Checking test 121 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3972,14 +3974,14 @@ Checking test 121 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 457.042749 -0:The maximum resident set size (KB) = 721984 +0:The total amount of wall time = 449.743518 +0:The maximum resident set size (KB) = 722192 Test 121 hafs_regional_atm_ocn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/hafs_regional_atm_wav -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/hafs_regional_atm_wav +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/hafs_regional_atm_wav +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/hafs_regional_atm_wav Checking test 122 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3988,14 +3990,14 @@ Checking test 122 hafs_regional_atm_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 1051.286585 -0:The maximum resident set size (KB) = 752692 +0:The total amount of wall time = 1047.943934 +0:The maximum resident set size (KB) = 752304 Test 122 hafs_regional_atm_wav PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/hafs_regional_atm_ocn_wav -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/hafs_regional_atm_ocn_wav +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/hafs_regional_atm_ocn_wav +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/hafs_regional_atm_ocn_wav Checking test 123 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4006,28 +4008,28 @@ Checking test 123 hafs_regional_atm_ocn_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 1170.086806 -0:The maximum resident set size (KB) = 766244 +0:The total amount of wall time = 1113.066759 +0:The maximum resident set size (KB) = 767208 Test 123 hafs_regional_atm_ocn_wav PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/hafs_regional_1nest_atm -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/hafs_regional_1nest_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/hafs_regional_1nest_atm +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/hafs_regional_1nest_atm Checking test 124 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 1272.414722 -0:The maximum resident set size (KB) = 275324 +0:The total amount of wall time = 1267.737662 +0:The maximum resident set size (KB) = 279240 Test 124 hafs_regional_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/hafs_regional_telescopic_2nests_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/hafs_regional_telescopic_2nests_atm Checking test 125 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4036,28 +4038,28 @@ Checking test 125 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -0:The total amount of wall time = 1364.928229 -0:The maximum resident set size (KB) = 291064 +0:The total amount of wall time = 1362.374349 +0:The maximum resident set size (KB) = 289172 Test 125 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/hafs_global_1nest_atm -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/hafs_global_1nest_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/hafs_global_1nest_atm +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/hafs_global_1nest_atm Checking test 126 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 837.232067 -0:The maximum resident set size (KB) = 186860 +0:The total amount of wall time = 837.160418 +0:The maximum resident set size (KB) = 187120 Test 126 hafs_global_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/hafs_global_multiple_4nests_atm -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/hafs_global_multiple_4nests_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/hafs_global_multiple_4nests_atm +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/hafs_global_multiple_4nests_atm Checking test 127 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4075,14 +4077,14 @@ Checking test 127 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK -0:The total amount of wall time = 1492.659652 -0:The maximum resident set size (KB) = 267852 +0:The total amount of wall time = 1490.836774 +0:The maximum resident set size (KB) = 265636 Test 127 hafs_global_multiple_4nests_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/hafs_regional_specified_moving_1nest_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/hafs_regional_specified_moving_1nest_atm Checking test 128 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4091,28 +4093,28 @@ Checking test 128 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -0:The total amount of wall time = 716.493964 -0:The maximum resident set size (KB) = 286968 +0:The total amount of wall time = 721.658249 +0:The maximum resident set size (KB) = 287708 Test 128 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/hafs_regional_storm_following_1nest_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/hafs_regional_storm_following_1nest_atm Checking test 129 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 687.576940 -0:The maximum resident set size (KB) = 287504 +0:The total amount of wall time = 692.028063 +0:The maximum resident set size (KB) = 288084 Test 129 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/hafs_regional_storm_following_1nest_atm_ocn +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/hafs_regional_storm_following_1nest_atm_ocn Checking test 130 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4121,14 +4123,14 @@ Checking test 130 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -0:The total amount of wall time = 705.100072 -0:The maximum resident set size (KB) = 321808 +0:The total amount of wall time = 703.530354 +0:The maximum resident set size (KB) = 319668 Test 130 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/hafs_regional_storm_following_1nest_atm_ocn_wav +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 131 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4139,28 +4141,28 @@ Checking test 131 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK -0:The total amount of wall time = 1317.223401 -0:The maximum resident set size (KB) = 385060 +0:The total amount of wall time = 1339.860601 +0:The maximum resident set size (KB) = 384172 Test 131 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/hafs_global_storm_following_1nest_atm -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/hafs_global_storm_following_1nest_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/hafs_global_storm_following_1nest_atm +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/hafs_global_storm_following_1nest_atm Checking test 132 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 417.590241 -0:The maximum resident set size (KB) = 204704 +0:The total amount of wall time = 415.627199 +0:The maximum resident set size (KB) = 205072 Test 132 hafs_global_storm_following_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/hafs_regional_docn -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/hafs_regional_docn +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/hafs_regional_docn +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/hafs_regional_docn Checking test 133 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4168,14 +4170,14 @@ Checking test 133 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 425.658143 -0:The maximum resident set size (KB) = 738488 +0:The total amount of wall time = 419.750394 +0:The maximum resident set size (KB) = 737936 Test 133 hafs_regional_docn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/hafs_regional_docn_oisst -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/hafs_regional_docn_oisst +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/hafs_regional_docn_oisst +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/hafs_regional_docn_oisst Checking test 134 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4183,131 +4185,131 @@ Checking test 134 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 420.975565 -0:The maximum resident set size (KB) = 719372 +0:The total amount of wall time = 421.572610 +0:The maximum resident set size (KB) = 717824 Test 134 hafs_regional_docn_oisst PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/hafs_regional_datm_cdeps -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/hafs_regional_datm_cdeps +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/hafs_regional_datm_cdeps +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/hafs_regional_datm_cdeps Checking test 135 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK -0:The total amount of wall time = 1265.784320 -0:The maximum resident set size (KB) = 891504 +0:The total amount of wall time = 1163.895202 +0:The maximum resident set size (KB) = 891692 Test 135 hafs_regional_datm_cdeps PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/datm_cdeps_control_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/datm_cdeps_control_cfsr +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/datm_cdeps_control_cfsr Checking test 136 datm_cdeps_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 165.091995 -0:The maximum resident set size (KB) = 720260 +0:The total amount of wall time = 171.807386 +0:The maximum resident set size (KB) = 720360 Test 136 datm_cdeps_control_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/datm_cdeps_restart_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/datm_cdeps_control_cfsr +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/datm_cdeps_restart_cfsr Checking test 137 datm_cdeps_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 100.410222 -0:The maximum resident set size (KB) = 719632 +0:The total amount of wall time = 100.097079 +0:The maximum resident set size (KB) = 719948 Test 137 datm_cdeps_restart_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/datm_cdeps_control_gefs -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/datm_cdeps_control_gefs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/datm_cdeps_control_gefs +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/datm_cdeps_control_gefs Checking test 138 datm_cdeps_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 160.867725 -0:The maximum resident set size (KB) = 610844 +0:The total amount of wall time = 162.050115 +0:The maximum resident set size (KB) = 610792 Test 138 datm_cdeps_control_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/datm_cdeps_iau_gefs -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/datm_cdeps_iau_gefs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/datm_cdeps_iau_gefs +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/datm_cdeps_iau_gefs Checking test 139 datm_cdeps_iau_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 167.387788 -0:The maximum resident set size (KB) = 610812 +0:The total amount of wall time = 163.727705 +0:The maximum resident set size (KB) = 610792 Test 139 datm_cdeps_iau_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/datm_cdeps_stochy_gefs -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/datm_cdeps_stochy_gefs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/datm_cdeps_stochy_gefs +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/datm_cdeps_stochy_gefs Checking test 140 datm_cdeps_stochy_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 163.848842 -0:The maximum resident set size (KB) = 610884 +0:The total amount of wall time = 164.104487 +0:The maximum resident set size (KB) = 610784 Test 140 datm_cdeps_stochy_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/datm_cdeps_ciceC_cfsr -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/datm_cdeps_ciceC_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/datm_cdeps_ciceC_cfsr +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/datm_cdeps_ciceC_cfsr Checking test 141 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 169.317206 -0:The maximum resident set size (KB) = 720032 +0:The total amount of wall time = 169.097678 +0:The maximum resident set size (KB) = 720336 Test 141 datm_cdeps_ciceC_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/datm_cdeps_bulk_cfsr -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/datm_cdeps_bulk_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/datm_cdeps_bulk_cfsr +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/datm_cdeps_bulk_cfsr Checking test 142 datm_cdeps_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 163.753076 -0:The maximum resident set size (KB) = 720260 +0:The total amount of wall time = 169.960772 +0:The maximum resident set size (KB) = 720412 Test 142 datm_cdeps_bulk_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/datm_cdeps_bulk_gefs -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/datm_cdeps_bulk_gefs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/datm_cdeps_bulk_gefs +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/datm_cdeps_bulk_gefs Checking test 143 datm_cdeps_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 161.978139 -0:The maximum resident set size (KB) = 610832 +0:The total amount of wall time = 160.274252 +0:The maximum resident set size (KB) = 610820 Test 143 datm_cdeps_bulk_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/datm_cdeps_mx025_cfsr -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/datm_cdeps_mx025_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/datm_cdeps_mx025_cfsr +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/datm_cdeps_mx025_cfsr Checking test 144 datm_cdeps_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -4316,14 +4318,14 @@ Checking test 144 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK -0:The total amount of wall time = 419.670033 -0:The maximum resident set size (KB) = 517896 +0:The total amount of wall time = 426.260936 +0:The maximum resident set size (KB) = 517620 Test 144 datm_cdeps_mx025_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/datm_cdeps_mx025_gefs -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/datm_cdeps_mx025_gefs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/datm_cdeps_mx025_gefs +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/datm_cdeps_mx025_gefs Checking test 145 datm_cdeps_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -4332,65 +4334,207 @@ Checking test 145 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK -0:The total amount of wall time = 418.651264 -0:The maximum resident set size (KB) = 498716 +0:The total amount of wall time = 786.085808 +0:The maximum resident set size (KB) = 497376 Test 145 datm_cdeps_mx025_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/datm_cdeps_multiple_files_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/datm_cdeps_control_cfsr +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/datm_cdeps_multiple_files_cfsr Checking test 146 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 163.592300 -0:The maximum resident set size (KB) = 720068 +0:The total amount of wall time = 166.823731 +0:The maximum resident set size (KB) = 720420 Test 146 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/datm_cdeps_3072x1536_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/datm_cdeps_3072x1536_cfsr Checking test 147 datm_cdeps_3072x1536_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 256.067997 -0:The maximum resident set size (KB) = 1945524 +0:The total amount of wall time = 269.300204 +0:The maximum resident set size (KB) = 1945592 Test 147 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/datm_cdeps_gfs -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/datm_cdeps_gfs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/datm_cdeps_gfs +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/datm_cdeps_gfs Checking test 148 datm_cdeps_gfs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 241.449070 -0:The maximum resident set size (KB) = 1945556 +0:The total amount of wall time = 268.870195 +0:The maximum resident set size (KB) = 1945032 Test 148 datm_cdeps_gfs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/datm_cdeps_debug_cfsr -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/datm_cdeps_debug_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/datm_cdeps_debug_cfsr +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/datm_cdeps_debug_cfsr Checking test 149 datm_cdeps_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK -0:The total amount of wall time = 459.137637 -0:The maximum resident set size (KB) = 721096 +0:The total amount of wall time = 460.102554 +0:The maximum resident set size (KB) = 710516 Test 149 datm_cdeps_debug_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/control_atmwav -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/control_atmwav -Checking test 150 control_atmwav results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/datm_cdeps_lnd_gswp3 +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/datm_cdeps_lnd_gswp3 +Checking test 150 datm_cdeps_lnd_gswp3 results .... + Comparing ufs.cpld.lnd.out.2000-01-01-10800.tile1.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-01-10800.tile2.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-01-10800.tile3.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-01-10800.tile4.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-01-10800.tile5.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-01-10800.tile6.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-01-43200.tile1.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-01-43200.tile2.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-01-43200.tile3.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-01-43200.tile4.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-01-43200.tile5.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-01-43200.tile6.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile4.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK + +0:The total amount of wall time = 11.153326 +0:The maximum resident set size (KB) = 210496 + +Test 150 datm_cdeps_lnd_gswp3 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/datm_cdeps_lnd_gswp3 +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/datm_cdeps_lnd_gswp3_rst +Checking test 151 datm_cdeps_lnd_gswp3_rst results .... + Comparing ufs.cpld.lnd.out.2000-01-01-54000.tile1.nc ............MISSING baseline + Comparing ufs.cpld.lnd.out.2000-01-01-54000.tile2.nc ............MISSING baseline + Comparing ufs.cpld.lnd.out.2000-01-01-54000.tile3.nc ............MISSING baseline + Comparing ufs.cpld.lnd.out.2000-01-01-54000.tile4.nc ............MISSING baseline + Comparing ufs.cpld.lnd.out.2000-01-01-54000.tile5.nc ............MISSING baseline + Comparing ufs.cpld.lnd.out.2000-01-01-54000.tile6.nc ............MISSING baseline + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile4.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK + +0:The total amount of wall time = 16.882970 +0:The maximum resident set size (KB) = 212352 + +Test 151 datm_cdeps_lnd_gswp3_rst FAIL Tries: 2 + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/control_p8_atmlnd_sbs +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/control_p8_atmlnd_sbs +Checking test 152 control_p8_atmlnd_sbs results .... + Comparing sfcf000.tile1.nc .........OK + Comparing sfcf000.tile2.nc .........OK + Comparing sfcf000.tile3.nc .........OK + Comparing sfcf000.tile4.nc .........OK + Comparing sfcf000.tile5.nc .........OK + Comparing sfcf000.tile6.nc .........OK + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf000.tile1.nc .........OK + Comparing atmf000.tile2.nc .........OK + Comparing atmf000.tile3.nc .........OK + Comparing atmf000.tile4.nc .........OK + Comparing atmf000.tile5.nc .........OK + Comparing atmf000.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing ufs.cpld.cpl.hi.lnd.2021-03-22-43200.nc .........OK + Comparing ufs.cpld.cpl.hi.lnd.2021-03-23-21600.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile1.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile2.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile3.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile4.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile5.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile6.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile1.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile2.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile3.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile4.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK + +0:The total amount of wall time = 235.501249 +0:The maximum resident set size (KB) = 1465212 + +Test 152 control_p8_atmlnd_sbs PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/control_atmwav +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/control_atmwav +Checking test 153 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -4433,15 +4577,15 @@ Checking test 150 control_atmwav results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK -0:The total amount of wall time = 98.385503 -0:The maximum resident set size (KB) = 478312 +0:The total amount of wall time = 99.749881 +0:The maximum resident set size (KB) = 476464 -Test 150 control_atmwav PASS +Test 153 control_atmwav PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/atmaero_control_p8 -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/atmaero_control_p8 -Checking test 151 atmaero_control_p8 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/atmaero_control_p8 +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/atmaero_control_p8 +Checking test 154 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4484,15 +4628,15 @@ Checking test 151 atmaero_control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 248.139592 -0:The maximum resident set size (KB) = 2706000 +0:The total amount of wall time = 251.841829 +0:The maximum resident set size (KB) = 2705860 -Test 151 atmaero_control_p8 PASS +Test 154 atmaero_control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/atmaero_control_p8_rad -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/atmaero_control_p8_rad -Checking test 152 atmaero_control_p8_rad results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/atmaero_control_p8_rad +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/atmaero_control_p8_rad +Checking test 155 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4535,15 +4679,15 @@ Checking test 152 atmaero_control_p8_rad results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 303.908035 -0:The maximum resident set size (KB) = 2760364 +0:The total amount of wall time = 302.252418 +0:The maximum resident set size (KB) = 2760688 -Test 152 atmaero_control_p8_rad PASS +Test 155 atmaero_control_p8_rad PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/atmaero_control_p8_rad_micro -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/atmaero_control_p8_rad_micro -Checking test 153 atmaero_control_p8_rad_micro results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/atmaero_control_p8_rad_micro +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/atmaero_control_p8_rad_micro +Checking test 156 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4586,15 +4730,15 @@ Checking test 153 atmaero_control_p8_rad_micro results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 309.834092 -0:The maximum resident set size (KB) = 2767128 +0:The total amount of wall time = 310.007753 +0:The maximum resident set size (KB) = 2766612 -Test 153 atmaero_control_p8_rad_micro PASS +Test 156 atmaero_control_p8_rad_micro PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221024/INTEL/regional_atmaq -working dir = /glade/scratch/jongkim/rt-1454-intel/jongkim/FV3_RT/rt_4709/regional_atmaq -Checking test 154 regional_atmaq results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/regional_atmaq +working dir = /glade/scratch/jongkim/rt-1443-intel/jongkim/FV3_RT/rt_6562/regional_atmaq +Checking test 157 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing sfcf006.nc .........OK @@ -4609,12 +4753,55 @@ Checking test 154 regional_atmaq results .... Comparing RESTART/phy_data.nc .........OK Comparing RESTART/sfc_data.nc .........OK -0:The total amount of wall time = 1016.537332 -0:The maximum resident set size (KB) = 798088 +0:The total amount of wall time = 1012.044090 +0:The maximum resident set size (KB) = 798068 + +Test 157 regional_atmaq PASS + +FAILED TESTS: +Test datm_cdeps_lnd_gswp3_rst 151 failed in check_result failed +Test datm_cdeps_lnd_gswp3_rst 151 failed in run_test failed + +REGRESSION TEST FAILED +Wed Oct 26 19:50:31 MDT 2022 +Elapsed time: 02h:51m:54s. Have a nice day! +Thu Oct 27 08:00:36 MDT 2022 +Start Regression test + +Compile 001 elapsed time 103 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/datm_cdeps_lnd_gswp3 +working dir = /glade/scratch/jongkim/pr-1443-intel/jongkim/FV3_RT/rt_13120/datm_cdeps_lnd_gswp3 +Checking test 001 datm_cdeps_lnd_gswp3 results .... + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile4.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK + +0:The total amount of wall time = 10.891512 +0:The maximum resident set size (KB) = 210560 + +Test 001 datm_cdeps_lnd_gswp3 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20221026/INTEL/datm_cdeps_lnd_gswp3 +working dir = /glade/scratch/jongkim/pr-1443-intel/jongkim/FV3_RT/rt_13120/datm_cdeps_lnd_gswp3_rst +Checking test 002 datm_cdeps_lnd_gswp3_rst results .... + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile4.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK + +0:The total amount of wall time = 16.273698 +0:The maximum resident set size (KB) = 208700 -Test 154 regional_atmaq PASS +Test 002 datm_cdeps_lnd_gswp3_rst PASS REGRESSION TEST WAS SUCCESSFUL -Tue Oct 25 09:22:53 MDT 2022 -Elapsed time: 01h:24m:09s. Have a nice day! +Thu Oct 27 08:10:50 MDT 2022 +Elapsed time: 00h:10m:14s. Have a nice day! diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index 3381e67c59..1a2986f222 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,21 +1,21 @@ -Tue Oct 25 12:32:21 UTC 2022 +Thu Oct 27 01:47:26 UTC 2022 Start Regression test -Compile 001 elapsed time 189 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 002 elapsed time 191 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 001 elapsed time 196 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 002 elapsed time 197 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release Compile 003 elapsed time 302 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 188 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 379 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 007 elapsed time 299 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 301 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 264 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 010 elapsed time 235 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 99 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 005 elapsed time 189 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 382 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 302 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 303 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 267 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 010 elapsed time 231 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON Compile 011 elapsed time 140 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 012 elapsed time 110 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 012 elapsed time 113 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/GNU/control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26105/control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/GNU/control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_421/control Checking test 001 control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -62,14 +62,14 @@ Checking test 001 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 811.222774 - 0: The maximum resident set size (KB) = 475076 + 0: The total amount of wall time = 823.756083 + 0: The maximum resident set size (KB) = 474052 Test 001 control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/GNU/control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26105/control_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/GNU/control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_421/control_restart Checking test 002 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -108,14 +108,14 @@ Checking test 002 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 412.358221 - 0: The maximum resident set size (KB) = 183644 + 0: The total amount of wall time = 409.934307 + 0: The maximum resident set size (KB) = 184240 Test 002 control_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/GNU/control_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26105/control_c48 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/GNU/control_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_421/control_c48 Checking test 003 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -154,14 +154,14 @@ Checking test 003 control_c48 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0: The total amount of wall time = 673.491515 -0: The maximum resident set size (KB) = 700672 +0: The total amount of wall time = 676.667700 +0: The maximum resident set size (KB) = 699660 Test 003 control_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/GNU/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26105/control_stochy +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/GNU/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_421/control_stochy Checking test 004 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -172,14 +172,14 @@ Checking test 004 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 657.429022 - 0: The maximum resident set size (KB) = 478796 + 0: The total amount of wall time = 654.434502 + 0: The maximum resident set size (KB) = 479772 Test 004 control_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/GNU/control_ras -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26105/control_ras +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/GNU/control_ras +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_421/control_ras Checking test 005 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -190,14 +190,14 @@ Checking test 005 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 844.320889 - 0: The maximum resident set size (KB) = 488080 + 0: The total amount of wall time = 825.135406 + 0: The maximum resident set size (KB) = 486700 Test 005 control_ras PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/GNU/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26105/control_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/GNU/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_421/control_p8 Checking test 006 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -244,14 +244,14 @@ Checking test 006 control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 884.084388 - 0: The maximum resident set size (KB) = 1234348 + 0: The total amount of wall time = 883.935658 + 0: The maximum resident set size (KB) = 1235708 Test 006 control_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26105/rap_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/GNU/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_421/rap_control Checking test 007 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -298,14 +298,14 @@ Checking test 007 rap_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1489.491284 - 0: The maximum resident set size (KB) = 831144 + 0: The total amount of wall time = 1479.336073 + 0: The maximum resident set size (KB) = 831424 Test 007 rap_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26105/rap_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/GNU/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_421/rap_decomp Checking test 008 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -352,14 +352,14 @@ Checking test 008 rap_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1451.063561 - 0: The maximum resident set size (KB) = 828704 + 0: The total amount of wall time = 1427.040806 + 0: The maximum resident set size (KB) = 832792 Test 008 rap_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26105/rap_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/GNU/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_421/rap_2threads Checking test 009 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -406,14 +406,14 @@ Checking test 009 rap_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1446.335588 - 0: The maximum resident set size (KB) = 895300 + 0: The total amount of wall time = 1480.105438 + 0: The maximum resident set size (KB) = 895028 Test 009 rap_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26105/rap_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/GNU/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_421/rap_restart Checking test 010 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -452,14 +452,14 @@ Checking test 010 rap_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 721.367127 - 0: The maximum resident set size (KB) = 540176 + 0: The total amount of wall time = 718.453652 + 0: The maximum resident set size (KB) = 544644 Test 010 rap_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26105/rap_sfcdiff +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/GNU/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_421/rap_sfcdiff Checking test 011 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -506,14 +506,14 @@ Checking test 011 rap_sfcdiff results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1496.946456 - 0: The maximum resident set size (KB) = 827196 + 0: The total amount of wall time = 1464.704439 + 0: The maximum resident set size (KB) = 829160 Test 011 rap_sfcdiff PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26105/rap_sfcdiff_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/GNU/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_421/rap_sfcdiff_decomp Checking test 012 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -560,14 +560,14 @@ Checking test 012 rap_sfcdiff_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1433.094641 - 0: The maximum resident set size (KB) = 828320 + 0: The total amount of wall time = 1441.342498 + 0: The maximum resident set size (KB) = 830380 Test 012 rap_sfcdiff_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26105/rap_sfcdiff_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/GNU/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_421/rap_sfcdiff_restart Checking test 013 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -606,14 +606,14 @@ Checking test 013 rap_sfcdiff_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1066.325192 - 0: The maximum resident set size (KB) = 544620 + 0: The total amount of wall time = 1065.685784 + 0: The maximum resident set size (KB) = 543684 Test 013 rap_sfcdiff_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26105/hrrr_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/GNU/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_421/hrrr_control Checking test 014 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -660,14 +660,14 @@ Checking test 014 hrrr_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1398.867403 - 0: The maximum resident set size (KB) = 826904 + 0: The total amount of wall time = 1425.580050 + 0: The maximum resident set size (KB) = 824768 Test 014 hrrr_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26105/hrrr_control_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/GNU/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_421/hrrr_control_2threads Checking test 015 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -714,14 +714,14 @@ Checking test 015 hrrr_control_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1456.281355 - 0: The maximum resident set size (KB) = 854280 + 0: The total amount of wall time = 1423.576913 + 0: The maximum resident set size (KB) = 893768 Test 015 hrrr_control_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26105/hrrr_control_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/GNU/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_421/hrrr_control_decomp Checking test 016 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -768,14 +768,14 @@ Checking test 016 hrrr_control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1417.486200 - 0: The maximum resident set size (KB) = 829932 + 0: The total amount of wall time = 1421.588408 + 0: The maximum resident set size (KB) = 824544 Test 016 hrrr_control_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26105/hrrr_control_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/GNU/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_421/hrrr_control_restart Checking test 017 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -814,14 +814,14 @@ Checking test 017 hrrr_control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1038.592873 - 0: The maximum resident set size (KB) = 540804 + 0: The total amount of wall time = 1036.351098 + 0: The maximum resident set size (KB) = 539588 Test 017 hrrr_control_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/GNU/rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26105/rrfs_v1beta +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/GNU/rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_421/rrfs_v1beta Checking test 018 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -868,14 +868,14 @@ Checking test 018 rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1461.603044 - 0: The maximum resident set size (KB) = 828280 + 0: The total amount of wall time = 1445.498543 + 0: The maximum resident set size (KB) = 831124 Test 018 rrfs_v1beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/GNU/rrfs_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26105/rrfs_conus13km_hrrr_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/GNU/rrfs_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_421/rrfs_conus13km_hrrr_warm Checking test 019 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -884,14 +884,14 @@ Checking test 019 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 775.236363 - 0: The maximum resident set size (KB) = 635576 + 0: The total amount of wall time = 747.215904 + 0: The maximum resident set size (KB) = 637836 Test 019 rrfs_conus13km_hrrr_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26105/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/GNU/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_421/rrfs_smoke_conus13km_hrrr_warm Checking test 020 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -900,14 +900,14 @@ Checking test 020 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 772.785823 - 0: The maximum resident set size (KB) = 649576 + 0: The total amount of wall time = 764.569246 + 0: The maximum resident set size (KB) = 649732 Test 020 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/GNU/rrfs_conus13km_radar_tten_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26105/rrfs_conus13km_radar_tten_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/GNU/rrfs_conus13km_radar_tten_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_421/rrfs_conus13km_radar_tten_warm Checking test 021 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -916,14 +916,14 @@ Checking test 021 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 743.004211 - 0: The maximum resident set size (KB) = 639904 + 0: The total amount of wall time = 751.765416 + 0: The maximum resident set size (KB) = 638360 Test 021 rrfs_conus13km_radar_tten_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/GNU/rrfs_conus13km_radar_tten_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26105/rrfs_conus13km_radar_tten_warm_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/GNU/rrfs_conus13km_radar_tten_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_421/rrfs_conus13km_radar_tten_warm_2threads Checking test 022 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -932,222 +932,222 @@ Checking test 022 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 977.159744 - 0: The maximum resident set size (KB) = 634704 + 0: The total amount of wall time = 1001.482799 + 0: The maximum resident set size (KB) = 634624 Test 022 rrfs_conus13km_radar_tten_warm_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/GNU/control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26105/control_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/GNU/control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_421/control_debug Checking test 023 control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 103.783905 - 0: The maximum resident set size (KB) = 470412 + 0: The total amount of wall time = 103.895494 + 0: The maximum resident set size (KB) = 475360 Test 023 control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/GNU/control_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26105/control_diag_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/GNU/control_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_421/control_diag_debug Checking test 024 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 128.897143 - 0: The maximum resident set size (KB) = 528512 + 0: The total amount of wall time = 127.935955 + 0: The maximum resident set size (KB) = 534788 Test 024 control_diag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/GNU/fv3_regional_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26105/regional_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/GNU/fv3_regional_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_421/regional_debug Checking test 025 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 127.171779 - 0: The maximum resident set size (KB) = 561200 + 0: The total amount of wall time = 129.035396 + 0: The maximum resident set size (KB) = 564552 Test 025 regional_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/GNU/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26105/rap_control_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/GNU/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_421/rap_control_debug Checking test 026 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 171.847872 - 0: The maximum resident set size (KB) = 845860 + 0: The total amount of wall time = 175.149570 + 0: The maximum resident set size (KB) = 846228 Test 026 rap_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/GNU/hrrr_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26105/hrrr_control_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/GNU/hrrr_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_421/hrrr_control_debug Checking test 027 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 168.370172 - 0: The maximum resident set size (KB) = 838268 + 0: The total amount of wall time = 171.431934 + 0: The maximum resident set size (KB) = 842172 Test 027 hrrr_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/GNU/rap_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26105/rap_diag_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/GNU/rap_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_421/rap_diag_debug Checking test 028 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 216.040987 - 0: The maximum resident set size (KB) = 927520 + 0: The total amount of wall time = 210.968919 + 0: The maximum resident set size (KB) = 930208 Test 028 rap_diag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/GNU/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26105/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/GNU/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_421/rap_noah_sfcdiff_cires_ugwp_debug Checking test 029 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 271.520613 - 0: The maximum resident set size (KB) = 840968 + 0: The total amount of wall time = 272.037802 + 0: The maximum resident set size (KB) = 852456 Test 029 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/GNU/rap_progcld_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26105/rap_progcld_thompson_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/GNU/rap_progcld_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_421/rap_progcld_thompson_debug Checking test 030 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 176.709876 - 0: The maximum resident set size (KB) = 844480 + 0: The total amount of wall time = 172.649951 + 0: The maximum resident set size (KB) = 846096 Test 030 rap_progcld_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/GNU/rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26105/rrfs_v1beta_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/GNU/rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_421/rrfs_v1beta_debug Checking test 031 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 171.330150 - 0: The maximum resident set size (KB) = 841824 + 0: The total amount of wall time = 174.888717 + 0: The maximum resident set size (KB) = 845384 Test 031 rrfs_v1beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/GNU/control_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26105/control_ras_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/GNU/control_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_421/control_ras_debug Checking test 032 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 106.934612 - 0: The maximum resident set size (KB) = 482680 + 0: The total amount of wall time = 101.913169 + 0: The maximum resident set size (KB) = 492496 Test 032 control_ras_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/GNU/control_stochy_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26105/control_stochy_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/GNU/control_stochy_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_421/control_stochy_debug Checking test 033 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 117.427413 - 0: The maximum resident set size (KB) = 474140 + 0: The total amount of wall time = 125.466479 + 0: The maximum resident set size (KB) = 478940 Test 033 control_stochy_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/GNU/control_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26105/control_debug_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/GNU/control_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_421/control_debug_p8 Checking test 034 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 118.445092 - 0: The maximum resident set size (KB) = 1233504 + 0: The total amount of wall time = 117.087358 + 0: The maximum resident set size (KB) = 1238336 Test 034 control_debug_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/GNU/rrfs_conus13km_hrrr_warm_debugs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26105/rrfs_conus13km_hrrr_warm_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/GNU/rrfs_conus13km_hrrr_warm_debugs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_421/rrfs_conus13km_hrrr_warm_debug Checking test 035 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 532.269162 - 0: The maximum resident set size (KB) = 646656 + 0: The total amount of wall time = 545.353598 + 0: The maximum resident set size (KB) = 647096 Test 035 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/GNU/rrfs_conus13km_radar_tten_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26105/rrfs_conus13km_radar_tten_warm_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/GNU/rrfs_conus13km_radar_tten_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_421/rrfs_conus13km_radar_tten_warm_debug Checking test 036 rrfs_conus13km_radar_tten_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 566.778222 - 0: The maximum resident set size (KB) = 647652 + 0: The total amount of wall time = 569.924605 + 0: The maximum resident set size (KB) = 652956 Test 036 rrfs_conus13km_radar_tten_warm_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/GNU/control_wam_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26105/control_wam_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/GNU/control_wam_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_421/control_wam_debug Checking test 037 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 184.127982 - 0: The maximum resident set size (KB) = 192936 + 0: The total amount of wall time = 185.422690 + 0: The maximum resident set size (KB) = 192696 Test 037 control_wam_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26105/rap_control_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/GNU/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_421/rap_control_dyn32_phy32 Checking test 038 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1194,14 +1194,14 @@ Checking test 038 rap_control_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1430.718935 - 0: The maximum resident set size (KB) = 690928 + 0: The total amount of wall time = 1451.565951 + 0: The maximum resident set size (KB) = 685840 Test 038 rap_control_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26105/hrrr_control_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/GNU/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_421/hrrr_control_dyn32_phy32 Checking test 039 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1248,14 +1248,14 @@ Checking test 039 hrrr_control_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 716.453887 - 0: The maximum resident set size (KB) = 683744 + 0: The total amount of wall time = 727.806153 + 0: The maximum resident set size (KB) = 686032 Test 039 hrrr_control_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26105/rap_2threads_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/GNU/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_421/rap_2threads_dyn32_phy32 Checking test 040 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1302,14 +1302,14 @@ Checking test 040 rap_2threads_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1470.466427 - 0: The maximum resident set size (KB) = 728048 + 0: The total amount of wall time = 1439.346416 + 0: The maximum resident set size (KB) = 730328 Test 040 rap_2threads_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26105/hrrr_control_2threads_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/GNU/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_421/hrrr_control_2threads_dyn32_phy32 Checking test 041 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1356,14 +1356,14 @@ Checking test 041 hrrr_control_2threads_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 714.794382 - 0: The maximum resident set size (KB) = 723584 + 0: The total amount of wall time = 708.969348 + 0: The maximum resident set size (KB) = 725900 Test 041 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26105/hrrr_control_decomp_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/GNU/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_421/hrrr_control_decomp_dyn32_phy32 Checking test 042 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1410,14 +1410,14 @@ Checking test 042 hrrr_control_decomp_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 716.616926 - 0: The maximum resident set size (KB) = 683512 + 0: The total amount of wall time = 723.126297 + 0: The maximum resident set size (KB) = 686888 Test 042 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26105/rap_restart_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/GNU/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_421/rap_restart_dyn32_phy32 Checking test 043 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -1456,14 +1456,14 @@ Checking test 043 rap_restart_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1050.517147 - 0: The maximum resident set size (KB) = 512292 + 0: The total amount of wall time = 1052.503086 + 0: The maximum resident set size (KB) = 510404 Test 043 rap_restart_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26105/hrrr_control_restart_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/GNU/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_421/hrrr_control_restart_dyn32_phy32 Checking test 044 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -1502,14 +1502,14 @@ Checking test 044 hrrr_control_restart_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 366.751734 - 0: The maximum resident set size (KB) = 504520 + 0: The total amount of wall time = 356.813733 + 0: The maximum resident set size (KB) = 504456 Test 044 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/GNU/rap_control_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26105/rap_control_dyn64_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/GNU/rap_control_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_421/rap_control_dyn64_phy32 Checking test 045 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1556,56 +1556,56 @@ Checking test 045 rap_control_dyn64_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1067.391802 - 0: The maximum resident set size (KB) = 705744 + 0: The total amount of wall time = 1043.106845 + 0: The maximum resident set size (KB) = 705160 Test 045 rap_control_dyn64_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/GNU/rap_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26105/rap_control_debug_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/GNU/rap_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_421/rap_control_debug_dyn32_phy32 Checking test 046 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 170.768751 - 0: The maximum resident set size (KB) = 697684 + 0: The total amount of wall time = 171.242341 + 0: The maximum resident set size (KB) = 702964 Test 046 rap_control_debug_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/GNU/hrrr_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26105/hrrr_control_debug_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/GNU/hrrr_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_421/hrrr_control_debug_dyn32_phy32 Checking test 047 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 173.802031 - 0: The maximum resident set size (KB) = 701916 + 0: The total amount of wall time = 169.706602 + 0: The maximum resident set size (KB) = 700168 Test 047 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/GNU/rap_control_debug_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26105/rap_control_dyn64_phy32_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/GNU/rap_control_debug_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_421/rap_control_dyn64_phy32_debug Checking test 048 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 202.006894 - 0: The maximum resident set size (KB) = 715492 + 0: The total amount of wall time = 202.379576 + 0: The maximum resident set size (KB) = 722076 Test 048 rap_control_dyn64_phy32_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/GNU/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26105/cpld_control_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/GNU/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_421/cpld_control_p8 Checking test 049 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1670,14 +1670,14 @@ Checking test 049 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1716.660493 - 0: The maximum resident set size (KB) = 1430664 + 0: The total amount of wall time = 1698.110872 + 0: The maximum resident set size (KB) = 1432496 Test 049 cpld_control_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/GNU/cpld_control_c96_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26105/cpld_control_nowave_noaero_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/GNU/cpld_control_c96_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_421/cpld_control_nowave_noaero_p8 Checking test 050 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1739,14 +1739,14 @@ Checking test 050 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 1230.429099 - 0: The maximum resident set size (KB) = 1325700 + 0: The total amount of wall time = 1233.493257 + 0: The maximum resident set size (KB) = 1327740 Test 050 cpld_control_nowave_noaero_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/GNU/cpld_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26105/cpld_debug_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/GNU/cpld_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_421/cpld_debug_p8 Checking test 051 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1799,25 +1799,25 @@ Checking test 051 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 844.419104 - 0: The maximum resident set size (KB) = 1445612 + 0: The total amount of wall time = 866.016763 + 0: The maximum resident set size (KB) = 1445536 Test 051 cpld_debug_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/GNU/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26105/datm_cdeps_control_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/GNU/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_421/datm_cdeps_control_cfsr Checking test 052 datm_cdeps_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 180.055530 - 0: The maximum resident set size (KB) = 660580 + 0: The total amount of wall time = 174.333176 + 0: The maximum resident set size (KB) = 668440 Test 052 datm_cdeps_control_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Tue Oct 25 13:25:56 UTC 2022 -Elapsed time: 00h:53m:35s. Have a nice day! +Thu Oct 27 03:06:03 UTC 2022 +Elapsed time: 01h:18m:37s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index 3cffe366ae..ad53633b95 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,32 +1,34 @@ -Tue Oct 25 12:17:17 UTC 2022 +Thu Oct 27 01:33:10 UTC 2022 Start Regression test -Compile 001 elapsed time 587 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 555 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 208 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 004 elapsed time 195 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 395 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 006 elapsed time 379 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 007 elapsed time 338 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 008 elapsed time 356 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 009 elapsed time 344 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 327 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 640 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 012 elapsed time 178 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 013 elapsed time 316 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 014 elapsed time 319 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 015 elapsed time 154 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 156 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 001 elapsed time 594 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 567 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 215 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 004 elapsed time 190 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 385 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 006 elapsed time 385 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 007 elapsed time 333 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 008 elapsed time 349 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 009 elapsed time 338 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 318 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 667 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 012 elapsed time 163 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 013 elapsed time 329 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 elapsed time 326 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 015 elapsed time 155 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 155 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug Compile 017 elapsed time 572 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 018 elapsed time 565 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 019 elapsed time 186 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 020 elapsed time 114 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 021 elapsed time 536 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 022 elapsed time 350 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 332 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/cpld_control_p8 +Compile 018 elapsed time 557 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 019 elapsed time 182 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 020 elapsed time 108 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 021 elapsed time 54 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 022 elapsed time 351 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 561 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 024 elapsed time 342 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 025 elapsed time 340 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/cpld_control_p8 Checking test 001 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -91,14 +93,14 @@ Checking test 001 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 336.342757 - 0: The maximum resident set size (KB) = 3177376 + 0: The total amount of wall time = 333.686154 + 0: The maximum resident set size (KB) = 3181120 Test 001 cpld_control_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/cpld_restart_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/cpld_restart_p8 Checking test 002 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -151,14 +153,14 @@ Checking test 002 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 196.892792 - 0: The maximum resident set size (KB) = 3051256 + 0: The total amount of wall time = 195.370924 + 0: The maximum resident set size (KB) = 3055664 Test 002 cpld_restart_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/cpld_2threads_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/cpld_2threads_p8 Checking test 003 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -211,14 +213,14 @@ Checking test 003 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 418.753897 - 0: The maximum resident set size (KB) = 3451424 + 0: The total amount of wall time = 421.996841 + 0: The maximum resident set size (KB) = 3449208 Test 003 cpld_2threads_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/cpld_esmfthreads_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/cpld_esmfthreads_p8 Checking test 004 cpld_esmfthreads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -271,14 +273,14 @@ Checking test 004 cpld_esmfthreads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 349.477853 - 0: The maximum resident set size (KB) = 3512600 + 0: The total amount of wall time = 351.486164 + 0: The maximum resident set size (KB) = 3514440 Test 004 cpld_esmfthreads_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/cpld_decomp_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/cpld_decomp_p8 Checking test 005 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -331,14 +333,14 @@ Checking test 005 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 333.568305 - 0: The maximum resident set size (KB) = 3170448 + 0: The total amount of wall time = 336.915919 + 0: The maximum resident set size (KB) = 3169008 Test 005 cpld_decomp_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/cpld_mpi_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/cpld_mpi_p8 Checking test 006 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -391,14 +393,14 @@ Checking test 006 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 277.023498 - 0: The maximum resident set size (KB) = 3019368 + 0: The total amount of wall time = 274.441129 + 0: The maximum resident set size (KB) = 3024360 Test 006 cpld_mpi_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/cpld_control_ciceC_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/cpld_control_ciceC_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/cpld_control_ciceC_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/cpld_control_ciceC_p8 Checking test 007 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -463,14 +465,14 @@ Checking test 007 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 335.847585 - 0: The maximum resident set size (KB) = 3179180 + 0: The total amount of wall time = 335.555532 + 0: The maximum resident set size (KB) = 3178432 Test 007 cpld_control_ciceC_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/cpld_control_c192_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/cpld_control_c192_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/cpld_control_c192_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/cpld_control_c192_p8 Checking test 008 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -523,14 +525,14 @@ Checking test 008 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 663.237719 - 0: The maximum resident set size (KB) = 3219984 + 0: The total amount of wall time = 658.497258 + 0: The maximum resident set size (KB) = 3221908 Test 008 cpld_control_c192_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/cpld_control_c192_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/cpld_restart_c192_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/cpld_control_c192_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/cpld_restart_c192_p8 Checking test 009 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -583,14 +585,14 @@ Checking test 009 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 410.399080 - 0: The maximum resident set size (KB) = 3135648 + 0: The total amount of wall time = 408.451248 + 0: The maximum resident set size (KB) = 3134840 Test 009 cpld_restart_c192_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/cpld_bmark_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/cpld_bmark_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/cpld_bmark_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/cpld_bmark_p8 Checking test 010 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -638,14 +640,14 @@ Checking test 010 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 836.107552 - 0: The maximum resident set size (KB) = 3989368 + 0: The total amount of wall time = 822.690211 + 0: The maximum resident set size (KB) = 3992360 Test 010 cpld_bmark_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/cpld_bmark_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/cpld_restart_bmark_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/cpld_bmark_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/cpld_restart_bmark_p8 Checking test 011 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -693,14 +695,14 @@ Checking test 011 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 501.452107 - 0: The maximum resident set size (KB) = 3943728 + 0: The total amount of wall time = 496.631154 + 0: The maximum resident set size (KB) = 3945160 Test 011 cpld_restart_bmark_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/cpld_bmark_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/cpld_bmark_esmfthreads_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/cpld_bmark_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/cpld_bmark_esmfthreads_p8 Checking test 012 cpld_bmark_esmfthreads_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -748,14 +750,14 @@ Checking test 012 cpld_bmark_esmfthreads_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 765.646548 - 0: The maximum resident set size (KB) = 4030500 + 0: The total amount of wall time = 764.045332 + 0: The maximum resident set size (KB) = 4031524 Test 012 cpld_bmark_esmfthreads_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/cpld_control_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/cpld_control_noaero_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/cpld_control_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/cpld_control_noaero_p8 Checking test 013 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -819,14 +821,14 @@ Checking test 013 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 228.546437 - 0: The maximum resident set size (KB) = 1724952 + 0: The total amount of wall time = 230.458619 + 0: The maximum resident set size (KB) = 1723804 Test 013 cpld_control_noaero_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/cpld_control_c96_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/cpld_control_nowave_noaero_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/cpld_control_c96_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/cpld_control_nowave_noaero_p8 Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -888,14 +890,14 @@ Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 259.209162 - 0: The maximum resident set size (KB) = 1760524 + 0: The total amount of wall time = 258.091916 + 0: The maximum resident set size (KB) = 1758600 Test 014 cpld_control_nowave_noaero_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/cpld_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/cpld_debug_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/cpld_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/cpld_debug_p8 Checking test 015 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -948,14 +950,14 @@ Checking test 015 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 663.906800 - 0: The maximum resident set size (KB) = 3254284 + 0: The total amount of wall time = 662.285833 + 0: The maximum resident set size (KB) = 3250412 Test 015 cpld_debug_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/cpld_debug_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/cpld_debug_noaero_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/cpld_debug_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/cpld_debug_noaero_p8 Checking test 016 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1007,14 +1009,14 @@ Checking test 016 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 397.172329 - 0: The maximum resident set size (KB) = 1751448 + 0: The total amount of wall time = 400.953303 + 0: The maximum resident set size (KB) = 1753508 Test 016 cpld_debug_noaero_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/cpld_control_noaero_p8_agrid -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/cpld_control_noaero_p8_agrid +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/cpld_control_noaero_p8_agrid +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/cpld_control_noaero_p8_agrid Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1076,14 +1078,14 @@ Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 264.579371 - 0: The maximum resident set size (KB) = 1757344 + 0: The total amount of wall time = 264.424303 + 0: The maximum resident set size (KB) = 1764312 Test 017 cpld_control_noaero_p8_agrid PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/cpld_control_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/cpld_control_c48 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/cpld_control_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/cpld_control_c48 Checking test 018 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1133,14 +1135,14 @@ Checking test 018 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 495.846544 - 0: The maximum resident set size (KB) = 2797304 + 0: The total amount of wall time = 502.751697 + 0: The maximum resident set size (KB) = 2807652 Test 018 cpld_control_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/cpld_warmstart_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/cpld_warmstart_c48 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/cpld_warmstart_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/cpld_warmstart_c48 Checking test 019 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1190,14 +1192,14 @@ Checking test 019 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 136.790162 - 0: The maximum resident set size (KB) = 2800360 + 0: The total amount of wall time = 136.012467 + 0: The maximum resident set size (KB) = 2797368 Test 019 cpld_warmstart_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/cpld_warmstart_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/cpld_restart_c48 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/cpld_warmstart_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/cpld_restart_c48 Checking test 020 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1247,14 +1249,14 @@ Checking test 020 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 72.767188 - 0: The maximum resident set size (KB) = 2245328 + 0: The total amount of wall time = 71.847389 + 0: The maximum resident set size (KB) = 2241152 Test 020 cpld_restart_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/control Checking test 021 control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1301,14 +1303,14 @@ Checking test 021 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 133.101311 - 0: The maximum resident set size (KB) = 629932 + 0: The total amount of wall time = 132.185949 + 0: The maximum resident set size (KB) = 625992 Test 021 control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/control_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/control_decomp Checking test 022 control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1351,14 +1353,14 @@ Checking test 022 control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 139.330012 - 0: The maximum resident set size (KB) = 617560 + 0: The total amount of wall time = 138.295718 + 0: The maximum resident set size (KB) = 622480 Test 022 control_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/control_2dwrtdecomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/control_2dwrtdecomp Checking test 023 control_2dwrtdecomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1369,14 +1371,14 @@ Checking test 023 control_2dwrtdecomp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 132.375356 - 0: The maximum resident set size (KB) = 625252 + 0: The total amount of wall time = 134.018800 + 0: The maximum resident set size (KB) = 630472 Test 023 control_2dwrtdecomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/control_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/control_2threads Checking test 024 control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1419,14 +1421,14 @@ Checking test 024 control_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 162.624406 - 0: The maximum resident set size (KB) = 663024 + 0: The total amount of wall time = 164.279347 + 0: The maximum resident set size (KB) = 668172 Test 024 control_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/control_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/control_restart Checking test 025 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1465,14 +1467,14 @@ Checking test 025 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 70.354466 - 0: The maximum resident set size (KB) = 467892 + 0: The total amount of wall time = 70.838872 + 0: The maximum resident set size (KB) = 467004 Test 025 control_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/control_fhzero +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/control_fhzero Checking test 026 control_fhzero results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -1515,14 +1517,14 @@ Checking test 026 control_fhzero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 125.986418 - 0: The maximum resident set size (KB) = 630388 + 0: The total amount of wall time = 126.569494 + 0: The maximum resident set size (KB) = 627920 Test 026 control_fhzero PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/control_CubedSphereGrid -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/control_CubedSphereGrid +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/control_CubedSphereGrid +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/control_CubedSphereGrid Checking test 027 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1549,28 +1551,28 @@ Checking test 027 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 127.646093 - 0: The maximum resident set size (KB) = 628916 + 0: The total amount of wall time = 128.521331 + 0: The maximum resident set size (KB) = 624608 Test 027 control_CubedSphereGrid PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/control_CubedSphereGrid_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/control_CubedSphereGrid_parallel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/control_CubedSphereGrid_parallel +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/control_CubedSphereGrid_parallel Checking test 028 control_CubedSphereGrid_parallel results .... - Comparing sfcf000.nc .........OK + Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing atmf024.nc .........OK - 0: The total amount of wall time = 125.141794 - 0: The maximum resident set size (KB) = 626624 + 0: The total amount of wall time = 124.994665 + 0: The maximum resident set size (KB) = 624056 Test 028 control_CubedSphereGrid_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/control_latlon -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/control_latlon +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/control_latlon +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/control_latlon Checking test 029 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1581,32 +1583,32 @@ Checking test 029 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 131.335857 - 0: The maximum resident set size (KB) = 629444 + 0: The total amount of wall time = 131.196923 + 0: The maximum resident set size (KB) = 623812 Test 029 control_latlon PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/control_wrtGauss_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/control_wrtGauss_netcdf_parallel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/control_wrtGauss_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/control_wrtGauss_netcdf_parallel Checking test 030 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK - Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf000.nc .........OK Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 134.425401 - 0: The maximum resident set size (KB) = 632916 + 0: The total amount of wall time = 134.862946 + 0: The maximum resident set size (KB) = 628804 Test 030 control_wrtGauss_netcdf_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/control_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/control_c48 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/control_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/control_c48 Checking test 031 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1645,14 +1647,14 @@ Checking test 031 control_c48 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0: The total amount of wall time = 345.888586 -0: The maximum resident set size (KB) = 812620 +0: The total amount of wall time = 349.117218 +0: The maximum resident set size (KB) = 817392 Test 031 control_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/control_c192 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/control_c192 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/control_c192 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/control_c192 Checking test 032 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1663,14 +1665,14 @@ Checking test 032 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 520.159517 - 0: The maximum resident set size (KB) = 765148 + 0: The total amount of wall time = 526.857022 + 0: The maximum resident set size (KB) = 763760 Test 032 control_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/control_c384 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/control_c384 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/control_c384 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/control_c384 Checking test 033 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1681,14 +1683,14 @@ Checking test 033 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 691.818956 - 0: The maximum resident set size (KB) = 1077624 + 0: The total amount of wall time = 695.826651 + 0: The maximum resident set size (KB) = 1084172 Test 033 control_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/control_c384gdas -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/control_c384gdas +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/control_c384gdas +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/control_c384gdas Checking test 034 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1731,14 +1733,14 @@ Checking test 034 control_c384gdas results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 582.115457 - 0: The maximum resident set size (KB) = 1241000 + 0: The total amount of wall time = 580.584633 + 0: The maximum resident set size (KB) = 1241944 Test 034 control_c384gdas PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/control_c384_progsigma -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/control_c384_progsigma +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/control_c384_progsigma +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/control_c384_progsigma Checking test 035 control_c384_progsigma results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1749,14 +1751,14 @@ Checking test 035 control_c384_progsigma results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 705.638019 - 0: The maximum resident set size (KB) = 1076696 + 0: The total amount of wall time = 705.902140 + 0: The maximum resident set size (KB) = 1075316 Test 035 control_c384_progsigma PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/control_stochy +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/control_stochy Checking test 036 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1767,28 +1769,28 @@ Checking test 036 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 86.092352 - 0: The maximum resident set size (KB) = 632784 + 0: The total amount of wall time = 86.219509 + 0: The maximum resident set size (KB) = 634992 Test 036 control_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/control_stochy_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/control_stochy_restart Checking test 037 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.585439 - 0: The maximum resident set size (KB) = 471328 + 0: The total amount of wall time = 46.220412 + 0: The maximum resident set size (KB) = 480188 Test 037 control_stochy_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/control_lndp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/control_lndp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/control_lndp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/control_lndp Checking test 038 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1799,14 +1801,14 @@ Checking test 038 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 78.929160 - 0: The maximum resident set size (KB) = 628864 + 0: The total amount of wall time = 79.304662 + 0: The maximum resident set size (KB) = 631680 Test 038 control_lndp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/control_iovr4 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/control_iovr4 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/control_iovr4 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/control_iovr4 Checking test 039 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1821,14 +1823,14 @@ Checking test 039 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 134.030303 - 0: The maximum resident set size (KB) = 627960 + 0: The total amount of wall time = 134.117370 + 0: The maximum resident set size (KB) = 631896 Test 039 control_iovr4 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/control_iovr5 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/control_iovr5 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/control_iovr5 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/control_iovr5 Checking test 040 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1843,14 +1845,14 @@ Checking test 040 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 133.001455 - 0: The maximum resident set size (KB) = 628612 + 0: The total amount of wall time = 134.933118 + 0: The maximum resident set size (KB) = 629192 Test 040 control_iovr5 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/control_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/control_p8 Checking test 041 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1897,14 +1899,14 @@ Checking test 041 control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 165.425105 - 0: The maximum resident set size (KB) = 1602876 + 0: The total amount of wall time = 163.389868 + 0: The maximum resident set size (KB) = 1603156 Test 041 control_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/control_p8_lndp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/control_p8_lndp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/control_p8_lndp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/control_p8_lndp Checking test 042 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1923,14 +1925,14 @@ Checking test 042 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 308.526401 - 0: The maximum resident set size (KB) = 1600180 + 0: The total amount of wall time = 307.575148 + 0: The maximum resident set size (KB) = 1605284 Test 042 control_p8_lndp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/control_restart_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/control_restart_p8 Checking test 043 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1969,14 +1971,14 @@ Checking test 043 control_restart_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 84.999466 - 0: The maximum resident set size (KB) = 860372 + 0: The total amount of wall time = 85.767393 + 0: The maximum resident set size (KB) = 862636 Test 043 control_restart_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/control_decomp_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/control_decomp_p8 Checking test 044 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2019,14 +2021,14 @@ Checking test 044 control_decomp_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 169.110931 - 0: The maximum resident set size (KB) = 1587948 + 0: The total amount of wall time = 169.276620 + 0: The maximum resident set size (KB) = 1580332 Test 044 control_decomp_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/control_2threads_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/control_2threads_p8 Checking test 045 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2069,14 +2071,14 @@ Checking test 045 control_2threads_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 200.544441 - 0: The maximum resident set size (KB) = 1658352 + 0: The total amount of wall time = 199.733792 + 0: The maximum resident set size (KB) = 1669272 Test 045 control_2threads_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/control_p8_rrtmgp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/control_p8_rrtmgp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/control_p8_rrtmgp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/control_p8_rrtmgp Checking test 046 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2123,14 +2125,14 @@ Checking test 046 control_p8_rrtmgp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 198.477157 - 0: The maximum resident set size (KB) = 1726808 + 0: The total amount of wall time = 197.318766 + 0: The maximum resident set size (KB) = 1728584 Test 046 control_p8_rrtmgp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/merra2_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/merra2_thompson +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/merra2_thompson +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/merra2_thompson Checking test 047 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2177,14 +2179,14 @@ Checking test 047 merra2_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 168.450508 - 0: The maximum resident set size (KB) = 1613232 + 0: The total amount of wall time = 167.940192 + 0: The maximum resident set size (KB) = 1610544 Test 047 merra2_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/fv3_regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/regional_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/fv3_regional_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/regional_control Checking test 048 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -2195,28 +2197,28 @@ Checking test 048 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 345.151802 - 0: The maximum resident set size (KB) = 848248 + 0: The total amount of wall time = 344.690444 + 0: The maximum resident set size (KB) = 848520 Test 048 regional_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/fv3_regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/regional_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/fv3_regional_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/regional_restart Checking test 049 regional_restart results .... Comparing dynf024.nc .........OK Comparing phyf024.nc .........OK Comparing PRSLEV.GrbF24 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 187.999037 - 0: The maximum resident set size (KB) = 830600 + 0: The total amount of wall time = 189.488491 + 0: The maximum resident set size (KB) = 828296 Test 049 regional_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/fv3_regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/regional_control_2dwrtdecomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/fv3_regional_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/regional_control_2dwrtdecomp Checking test 050 regional_control_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -2227,14 +2229,14 @@ Checking test 050 regional_control_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 344.316710 - 0: The maximum resident set size (KB) = 843280 + 0: The total amount of wall time = 344.353346 + 0: The maximum resident set size (KB) = 843392 Test 050 regional_control_2dwrtdecomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/fv3_regional_noquilt -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/regional_noquilt +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/fv3_regional_noquilt +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/regional_noquilt Checking test 051 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2242,14 +2244,14 @@ Checking test 051 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 = 366.937589 - 0: The maximum resident set size (KB) = 826672 + 0: The total amount of wall time = 367.161374 + 0: The maximum resident set size (KB) = 830100 Test 051 regional_noquilt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/fv3_regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/regional_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/fv3_regional_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/regional_2threads Checking test 052 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -2260,28 +2262,28 @@ Checking test 052 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 248.146744 - 0: The maximum resident set size (KB) = 806192 + 0: The total amount of wall time = 250.349186 + 0: The maximum resident set size (KB) = 803628 Test 052 regional_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/fv3_regional_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/regional_netcdf_parallel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/fv3_regional_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/regional_netcdf_parallel Checking test 053 regional_netcdf_parallel results .... - Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf024.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf024.nc ............ALT CHECK......OK - 0: The total amount of wall time = 338.848585 - 0: The maximum resident set size (KB) = 834064 + 0: The total amount of wall time = 340.266581 + 0: The maximum resident set size (KB) = 836460 Test 053 regional_netcdf_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/fv3_regional_3km -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/regional_3km +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/fv3_regional_3km +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/regional_3km Checking test 054 regional_3km results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2292,14 +2294,14 @@ Checking test 054 regional_3km results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 256.275960 - 0: The maximum resident set size (KB) = 856752 + 0: The total amount of wall time = 258.864287 + 0: The maximum resident set size (KB) = 855244 Test 054 regional_3km PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/fv3_regional_3km -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/regional_3km_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/fv3_regional_3km +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/regional_3km_decomp Checking test 055 regional_3km_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2310,14 +2312,14 @@ Checking test 055 regional_3km_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 272.359821 - 0: The maximum resident set size (KB) = 852340 + 0: The total amount of wall time = 277.862749 + 0: The maximum resident set size (KB) = 857740 Test 055 regional_3km_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/rap_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/rap_control Checking test 056 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2364,14 +2366,14 @@ Checking test 056 rap_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 438.206233 - 0: The maximum resident set size (KB) = 1057492 + 0: The total amount of wall time = 440.261803 + 0: The maximum resident set size (KB) = 1050904 Test 056 rap_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_rrtmgp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/rap_rrtmgp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_rrtmgp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/rap_rrtmgp Checking test 057 rap_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2418,14 +2420,14 @@ Checking test 057 rap_rrtmgp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 472.207556 - 0: The maximum resident set size (KB) = 1214224 + 0: The total amount of wall time = 473.015703 + 0: The maximum resident set size (KB) = 1221444 Test 057 rap_rrtmgp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/regional_spp_sppt_shum_skeb -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/regional_spp_sppt_shum_skeb +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/regional_spp_sppt_shum_skeb +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/regional_spp_sppt_shum_skeb Checking test 058 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2436,14 +2438,14 @@ Checking test 058 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 292.338905 - 0: The maximum resident set size (KB) = 1182496 + 0: The total amount of wall time = 293.297501 + 0: The maximum resident set size (KB) = 1181828 Test 058 regional_spp_sppt_shum_skeb PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/rap_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/rap_decomp Checking test 059 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2490,14 +2492,14 @@ Checking test 059 rap_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 463.016116 - 0: The maximum resident set size (KB) = 999968 + 0: The total amount of wall time = 462.881683 + 0: The maximum resident set size (KB) = 1000404 Test 059 rap_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/rap_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/rap_2threads Checking test 060 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2544,14 +2546,14 @@ Checking test 060 rap_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 524.883897 - 0: The maximum resident set size (KB) = 1055688 + 0: The total amount of wall time = 523.514619 + 0: The maximum resident set size (KB) = 1057644 Test 060 rap_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/rap_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/rap_restart Checking test 061 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2590,14 +2592,14 @@ Checking test 061 rap_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 221.637803 - 0: The maximum resident set size (KB) = 960404 + 0: The total amount of wall time = 223.220032 + 0: The maximum resident set size (KB) = 963344 Test 061 rap_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/rap_sfcdiff +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/rap_sfcdiff Checking test 062 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2644,14 +2646,14 @@ Checking test 062 rap_sfcdiff results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 436.243252 - 0: The maximum resident set size (KB) = 1055452 + 0: The total amount of wall time = 436.626146 + 0: The maximum resident set size (KB) = 1055732 Test 062 rap_sfcdiff PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/rap_sfcdiff_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/rap_sfcdiff_decomp Checking test 063 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2698,14 +2700,14 @@ Checking test 063 rap_sfcdiff_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 463.729295 - 0: The maximum resident set size (KB) = 1002956 + 0: The total amount of wall time = 461.511647 + 0: The maximum resident set size (KB) = 1000832 Test 063 rap_sfcdiff_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/rap_sfcdiff_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/rap_sfcdiff_restart Checking test 064 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2744,14 +2746,14 @@ Checking test 064 rap_sfcdiff_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 325.881996 - 0: The maximum resident set size (KB) = 993384 + 0: The total amount of wall time = 326.673820 + 0: The maximum resident set size (KB) = 985412 Test 064 rap_sfcdiff_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/hrrr_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/hrrr_control Checking test 065 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2798,14 +2800,14 @@ Checking test 065 hrrr_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 420.321493 - 0: The maximum resident set size (KB) = 1053016 + 0: The total amount of wall time = 418.668486 + 0: The maximum resident set size (KB) = 1056464 Test 065 hrrr_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/hrrr_control_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/hrrr_control_decomp Checking test 066 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2852,14 +2854,14 @@ Checking test 066 hrrr_control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 438.478066 - 0: The maximum resident set size (KB) = 997620 + 0: The total amount of wall time = 439.352028 + 0: The maximum resident set size (KB) = 995660 Test 066 hrrr_control_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/hrrr_control_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/hrrr_control_2threads Checking test 067 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2906,14 +2908,14 @@ Checking test 067 hrrr_control_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 493.748939 - 0: The maximum resident set size (KB) = 1063232 + 0: The total amount of wall time = 499.983853 + 0: The maximum resident set size (KB) = 1061204 Test 067 hrrr_control_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/hrrr_control_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/hrrr_control_restart Checking test 068 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2952,14 +2954,14 @@ Checking test 068 hrrr_control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 314.765688 - 0: The maximum resident set size (KB) = 971352 + 0: The total amount of wall time = 315.172590 + 0: The maximum resident set size (KB) = 974728 Test 068 hrrr_control_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/rrfs_v1beta +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/rrfs_v1beta Checking test 069 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3006,14 +3008,14 @@ Checking test 069 rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 430.850859 - 0: The maximum resident set size (KB) = 1054516 + 0: The total amount of wall time = 429.484679 + 0: The maximum resident set size (KB) = 1049816 Test 069 rrfs_v1beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/rrfs_v1nssl -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/rrfs_v1nssl +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/rrfs_v1nssl +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/rrfs_v1nssl Checking test 070 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3028,14 +3030,14 @@ Checking test 070 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 514.851338 - 0: The maximum resident set size (KB) = 693892 + 0: The total amount of wall time = 512.405522 + 0: The maximum resident set size (KB) = 691528 Test 070 rrfs_v1nssl PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/rrfs_v1nssl_nohailnoccn +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/rrfs_v1nssl_nohailnoccn Checking test 071 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3050,14 +3052,14 @@ Checking test 071 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 501.575443 - 0: The maximum resident set size (KB) = 742092 + 0: The total amount of wall time = 503.293078 + 0: The maximum resident set size (KB) = 748140 Test 071 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/rrfs_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/rrfs_conus13km_hrrr_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/rrfs_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/rrfs_conus13km_hrrr_warm Checking test 072 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3066,14 +3068,14 @@ Checking test 072 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 125.924966 - 0: The maximum resident set size (KB) = 930556 + 0: The total amount of wall time = 127.155525 + 0: The maximum resident set size (KB) = 923648 Test 072 rrfs_conus13km_hrrr_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/rrfs_smoke_conus13km_hrrr_warm Checking test 073 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3082,14 +3084,14 @@ Checking test 073 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 142.420048 - 0: The maximum resident set size (KB) = 952964 + 0: The total amount of wall time = 141.831472 + 0: The maximum resident set size (KB) = 953124 Test 073 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/rrfs_conus13km_radar_tten_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/rrfs_conus13km_radar_tten_warm Checking test 074 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3098,14 +3100,14 @@ Checking test 074 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 127.883832 - 0: The maximum resident set size (KB) = 931120 + 0: The total amount of wall time = 127.267912 + 0: The maximum resident set size (KB) = 931124 Test 074 rrfs_conus13km_radar_tten_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/rrfs_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/rrfs_conus13km_hrrr_warm_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/rrfs_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/rrfs_conus13km_hrrr_warm_2threads Checking test 075 rrfs_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3114,14 +3116,14 @@ Checking test 075 rrfs_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 95.886547 - 0: The maximum resident set size (KB) = 898764 + 0: The total amount of wall time = 94.554270 + 0: The maximum resident set size (KB) = 902492 Test 075 rrfs_conus13km_hrrr_warm_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/rrfs_conus13km_radar_tten_warm_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/rrfs_conus13km_radar_tten_warm_2threads Checking test 076 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3130,14 +3132,14 @@ Checking test 076 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 96.838851 - 0: The maximum resident set size (KB) = 901684 + 0: The total amount of wall time = 95.194447 + 0: The maximum resident set size (KB) = 904804 Test 076 rrfs_conus13km_radar_tten_warm_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/control_csawmg -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/control_csawmg +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/control_csawmg +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/control_csawmg Checking test 077 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3148,14 +3150,14 @@ Checking test 077 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 339.537327 - 0: The maximum resident set size (KB) = 732804 + 0: The total amount of wall time = 339.963277 + 0: The maximum resident set size (KB) = 728944 Test 077 control_csawmg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/control_csawmgt -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/control_csawmgt +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/control_csawmgt +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/control_csawmgt Checking test 078 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3166,14 +3168,14 @@ Checking test 078 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 334.335267 - 0: The maximum resident set size (KB) = 729116 + 0: The total amount of wall time = 339.335889 + 0: The maximum resident set size (KB) = 732068 Test 078 control_csawmgt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/control_ras -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/control_ras +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/control_ras +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/control_ras Checking test 079 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3184,82 +3186,82 @@ Checking test 079 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 177.389619 - 0: The maximum resident set size (KB) = 727220 + 0: The total amount of wall time = 177.943530 + 0: The maximum resident set size (KB) = 723708 Test 079 control_ras PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/control_wam -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/control_wam +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/control_wam +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/control_wam Checking test 080 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 107.364123 - 0: The maximum resident set size (KB) = 630264 + 0: The total amount of wall time = 109.835231 + 0: The maximum resident set size (KB) = 631388 Test 080 control_wam PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/rrfs_conus13km_hrrr_warm_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/rrfs_conus13km_hrrr_warm_debug Checking test 081 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 720.661939 - 0: The maximum resident set size (KB) = 958436 + 0: The total amount of wall time = 709.515600 + 0: The maximum resident set size (KB) = 960624 Test 081 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/rrfs_conus13km_radar_tten_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/rrfs_conus13km_radar_tten_warm_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/rrfs_conus13km_radar_tten_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/rrfs_conus13km_radar_tten_warm_debug Checking test 082 rrfs_conus13km_radar_tten_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 728.842800 - 0: The maximum resident set size (KB) = 963440 + 0: The total amount of wall time = 729.598255 + 0: The maximum resident set size (KB) = 963920 Test 082 rrfs_conus13km_radar_tten_warm_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/control_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/control_debug Checking test 083 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.419368 - 0: The maximum resident set size (KB) = 797640 + 0: The total amount of wall time = 154.586309 + 0: The maximum resident set size (KB) = 793628 Test 083 control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/control_2threads_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/control_2threads_debug Checking test 084 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 = 214.407941 - 0: The maximum resident set size (KB) = 830600 + 0: The total amount of wall time = 213.812408 + 0: The maximum resident set size (KB) = 832120 Test 084 control_2threads_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/control_CubedSphereGrid_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/control_CubedSphereGrid_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/control_CubedSphereGrid_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/control_CubedSphereGrid_debug Checking test 085 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3286,348 +3288,348 @@ Checking test 085 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 161.683591 - 0: The maximum resident set size (KB) = 798256 + 0: The total amount of wall time = 166.166273 + 0: The maximum resident set size (KB) = 794112 Test 085 control_CubedSphereGrid_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/control_wrtGauss_netcdf_parallel_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/control_wrtGauss_netcdf_parallel_debug Checking test 086 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 157.180641 - 0: The maximum resident set size (KB) = 795148 + 0: The total amount of wall time = 159.067385 + 0: The maximum resident set size (KB) = 796188 Test 086 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/control_stochy_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/control_stochy_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/control_stochy_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/control_stochy_debug Checking test 087 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 172.105799 - 0: The maximum resident set size (KB) = 806568 + 0: The total amount of wall time = 174.875580 + 0: The maximum resident set size (KB) = 806000 Test 087 control_stochy_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/control_lndp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/control_lndp_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/control_lndp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/control_lndp_debug Checking test 088 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 154.902637 - 0: The maximum resident set size (KB) = 801988 + 0: The total amount of wall time = 156.034411 + 0: The maximum resident set size (KB) = 805548 Test 088 control_lndp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/control_csawmg_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/control_csawmg_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/control_csawmg_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/control_csawmg_debug Checking test 089 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.914510 - 0: The maximum resident set size (KB) = 845156 + 0: The total amount of wall time = 236.407377 + 0: The maximum resident set size (KB) = 847392 Test 089 control_csawmg_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/control_csawmgt_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/control_csawmgt_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/control_csawmgt_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/control_csawmgt_debug Checking test 090 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 231.221041 - 0: The maximum resident set size (KB) = 842816 + 0: The total amount of wall time = 234.236347 + 0: The maximum resident set size (KB) = 843560 Test 090 control_csawmgt_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/control_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/control_ras_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/control_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/control_ras_debug Checking test 091 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.316702 - 0: The maximum resident set size (KB) = 812060 + 0: The total amount of wall time = 156.038060 + 0: The maximum resident set size (KB) = 810416 Test 091 control_ras_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/control_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/control_diag_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/control_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/control_diag_debug Checking test 092 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 169.988499 - 0: The maximum resident set size (KB) = 845892 + 0: The total amount of wall time = 161.538793 + 0: The maximum resident set size (KB) = 851832 Test 092 control_diag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/control_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/control_debug_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/control_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/control_debug_p8 Checking test 093 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 168.920229 - 0: The maximum resident set size (KB) = 1623812 + 0: The total amount of wall time = 170.110915 + 0: The maximum resident set size (KB) = 1618716 Test 093 control_debug_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/fv3_regional_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/regional_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/fv3_regional_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/regional_debug Checking test 094 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 = 247.781916 - 0: The maximum resident set size (KB) = 861740 + 0: The total amount of wall time = 255.935147 + 0: The maximum resident set size (KB) = 862452 Test 094 regional_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/rap_control_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/rap_control_debug Checking test 095 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 = 271.105055 - 0: The maximum resident set size (KB) = 1178716 + 0: The total amount of wall time = 276.473431 + 0: The maximum resident set size (KB) = 1175344 Test 095 rap_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/hrrr_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/hrrr_control_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/hrrr_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/hrrr_control_debug Checking test 096 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 267.639418 - 0: The maximum resident set size (KB) = 1168480 + 0: The total amount of wall time = 267.410383 + 0: The maximum resident set size (KB) = 1167864 Test 096 hrrr_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/rap_unified_drag_suite_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/rap_unified_drag_suite_debug Checking test 097 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 = 274.727339 - 0: The maximum resident set size (KB) = 1178324 + 0: The total amount of wall time = 276.923665 + 0: The maximum resident set size (KB) = 1174064 Test 097 rap_unified_drag_suite_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/rap_diag_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/rap_diag_debug Checking test 098 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 289.161061 - 0: The maximum resident set size (KB) = 1259900 + 0: The total amount of wall time = 291.484646 + 0: The maximum resident set size (KB) = 1260852 Test 098 rap_diag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/rap_cires_ugwp_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/rap_cires_ugwp_debug Checking test 099 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 = 281.680335 - 0: The maximum resident set size (KB) = 1172256 + 0: The total amount of wall time = 282.329016 + 0: The maximum resident set size (KB) = 1175608 Test 099 rap_cires_ugwp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/rap_unified_ugwp_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/rap_unified_ugwp_debug Checking test 100 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.159787 - 0: The maximum resident set size (KB) = 1177268 + 0: The total amount of wall time = 278.009252 + 0: The maximum resident set size (KB) = 1169924 Test 100 rap_unified_ugwp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_lndp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/rap_lndp_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_lndp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/rap_lndp_debug Checking test 101 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.283151 - 0: The maximum resident set size (KB) = 1180892 + 0: The total amount of wall time = 275.208746 + 0: The maximum resident set size (KB) = 1177256 Test 101 rap_lndp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_flake_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/rap_flake_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_flake_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/rap_flake_debug Checking test 102 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 274.397150 - 0: The maximum resident set size (KB) = 1166760 + 0: The total amount of wall time = 278.502147 + 0: The maximum resident set size (KB) = 1176604 Test 102 rap_flake_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_progcld_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/rap_progcld_thompson_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_progcld_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/rap_progcld_thompson_debug Checking test 103 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.822792 - 0: The maximum resident set size (KB) = 1173108 + 0: The total amount of wall time = 276.855657 + 0: The maximum resident set size (KB) = 1173516 Test 103 rap_progcld_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_noah_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/rap_noah_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_noah_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/rap_noah_debug Checking test 104 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 270.114002 - 0: The maximum resident set size (KB) = 1180564 + 0: The total amount of wall time = 278.757230 + 0: The maximum resident set size (KB) = 1176488 Test 104 rap_noah_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_rrtmgp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/rap_rrtmgp_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_rrtmgp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/rap_rrtmgp_debug Checking test 105 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 = 459.081410 - 0: The maximum resident set size (KB) = 1306604 + 0: The total amount of wall time = 459.109748 + 0: The maximum resident set size (KB) = 1309708 Test 105 rap_rrtmgp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_sfcdiff_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/rap_sfcdiff_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_sfcdiff_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/rap_sfcdiff_debug Checking test 106 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 = 278.463753 - 0: The maximum resident set size (KB) = 1170748 + 0: The total amount of wall time = 276.071142 + 0: The maximum resident set size (KB) = 1178128 Test 106 rap_sfcdiff_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/rap_noah_sfcdiff_cires_ugwp_debug Checking test 107 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 = 447.882280 - 0: The maximum resident set size (KB) = 1178972 + 0: The total amount of wall time = 445.909407 + 0: The maximum resident set size (KB) = 1171852 Test 107 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/rrfs_v1beta_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/rrfs_v1beta_debug Checking test 108 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 268.428476 - 0: The maximum resident set size (KB) = 1172016 + 0: The total amount of wall time = 275.050592 + 0: The maximum resident set size (KB) = 1169140 Test 108 rrfs_v1beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/control_wam_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/control_wam_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/control_wam_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/control_wam_debug Checking test 109 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 281.834603 - 0: The maximum resident set size (KB) = 514760 + 0: The total amount of wall time = 274.113670 + 0: The maximum resident set size (KB) = 511844 Test 109 control_wam_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/regional_spp_sppt_shum_skeb_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 110 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3638,14 +3640,14 @@ Checking test 110 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 268.685842 - 0: The maximum resident set size (KB) = 1075176 + 0: The total amount of wall time = 269.584871 + 0: The maximum resident set size (KB) = 1075776 Test 110 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/rap_control_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/rap_control_dyn32_phy32 Checking test 111 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3692,14 +3694,14 @@ Checking test 111 rap_control_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 354.119445 - 0: The maximum resident set size (KB) = 995848 + 0: The total amount of wall time = 354.321215 + 0: The maximum resident set size (KB) = 992644 Test 111 rap_control_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/hrrr_control_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/hrrr_control_dyn32_phy32 Checking test 112 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3746,14 +3748,14 @@ Checking test 112 hrrr_control_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 183.660095 - 0: The maximum resident set size (KB) = 953844 + 0: The total amount of wall time = 183.641863 + 0: The maximum resident set size (KB) = 946744 Test 112 hrrr_control_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/rap_2threads_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/rap_2threads_dyn32_phy32 Checking test 113 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3800,14 +3802,14 @@ Checking test 113 rap_2threads_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 435.217422 - 0: The maximum resident set size (KB) = 920668 + 0: The total amount of wall time = 432.987286 + 0: The maximum resident set size (KB) = 921828 Test 113 rap_2threads_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/hrrr_control_2threads_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/hrrr_control_2threads_dyn32_phy32 Checking test 114 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3854,14 +3856,14 @@ Checking test 114 hrrr_control_2threads_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 221.269423 - 0: The maximum resident set size (KB) = 925808 + 0: The total amount of wall time = 219.512563 + 0: The maximum resident set size (KB) = 923904 Test 114 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/hrrr_control_decomp_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/hrrr_control_decomp_dyn32_phy32 Checking test 115 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3908,14 +3910,14 @@ Checking test 115 hrrr_control_decomp_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 193.520177 - 0: The maximum resident set size (KB) = 892120 + 0: The total amount of wall time = 194.513838 + 0: The maximum resident set size (KB) = 892016 Test 115 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/rap_restart_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/rap_restart_dyn32_phy32 Checking test 116 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3954,14 +3956,14 @@ Checking test 116 rap_restart_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 265.091812 - 0: The maximum resident set size (KB) = 947408 + 0: The total amount of wall time = 265.835535 + 0: The maximum resident set size (KB) = 947192 Test 116 rap_restart_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/hrrr_control_restart_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/hrrr_control_restart_dyn32_phy32 Checking test 117 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4000,14 +4002,14 @@ Checking test 117 hrrr_control_restart_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 96.223451 - 0: The maximum resident set size (KB) = 847336 + 0: The total amount of wall time = 93.884822 + 0: The maximum resident set size (KB) = 869544 Test 117 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_control_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/rap_control_dyn64_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_control_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/rap_control_dyn64_phy32 Checking test 118 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4054,81 +4056,81 @@ Checking test 118 rap_control_dyn64_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 229.215339 - 0: The maximum resident set size (KB) = 963400 + 0: The total amount of wall time = 231.516555 + 0: The maximum resident set size (KB) = 964548 Test 118 rap_control_dyn64_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/rap_control_debug_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/rap_control_debug_dyn32_phy32 Checking test 119 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 269.321858 - 0: The maximum resident set size (KB) = 1056824 + 0: The total amount of wall time = 268.966213 + 0: The maximum resident set size (KB) = 1059796 Test 119 rap_control_debug_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/hrrr_control_debug_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/hrrr_control_debug_dyn32_phy32 Checking test 120 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 265.672534 - 0: The maximum resident set size (KB) = 1054944 + 0: The total amount of wall time = 265.620093 + 0: The maximum resident set size (KB) = 1060468 Test 120 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_control_debug_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/rap_control_dyn64_phy32_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_control_debug_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/rap_control_dyn64_phy32_debug Checking test 121 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 269.322231 - 0: The maximum resident set size (KB) = 1105580 + 0: The total amount of wall time = 271.914682 + 0: The maximum resident set size (KB) = 1096272 Test 121 rap_control_dyn64_phy32_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/hafs_regional_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/hafs_regional_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/hafs_regional_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/hafs_regional_atm Checking test 122 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 301.399711 - 0: The maximum resident set size (KB) = 972776 + 0: The total amount of wall time = 306.346656 + 0: The maximum resident set size (KB) = 971112 Test 122 hafs_regional_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/hafs_regional_atm_thompson_gfdlsf +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/hafs_regional_atm_thompson_gfdlsf Checking test 123 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 388.323033 - 0: The maximum resident set size (KB) = 1338680 + 0: The total amount of wall time = 380.514211 + 0: The maximum resident set size (KB) = 1343580 Test 123 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/hafs_regional_atm_ocn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/hafs_regional_atm_ocn +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/hafs_regional_atm_ocn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/hafs_regional_atm_ocn Checking test 124 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4137,14 +4139,14 @@ Checking test 124 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 384.049947 - 0: The maximum resident set size (KB) = 1200752 + 0: The total amount of wall time = 384.392390 + 0: The maximum resident set size (KB) = 1193948 Test 124 hafs_regional_atm_ocn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/hafs_regional_atm_wav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/hafs_regional_atm_wav +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/hafs_regional_atm_wav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/hafs_regional_atm_wav Checking test 125 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4153,14 +4155,14 @@ Checking test 125 hafs_regional_atm_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 709.937919 - 0: The maximum resident set size (KB) = 1229880 + 0: The total amount of wall time = 719.198144 + 0: The maximum resident set size (KB) = 1227132 Test 125 hafs_regional_atm_wav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/hafs_regional_atm_ocn_wav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/hafs_regional_atm_ocn_wav +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/hafs_regional_atm_ocn_wav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/hafs_regional_atm_ocn_wav Checking test 126 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4171,28 +4173,28 @@ Checking test 126 hafs_regional_atm_ocn_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 808.249622 - 0: The maximum resident set size (KB) = 1237704 + 0: The total amount of wall time = 809.323671 + 0: The maximum resident set size (KB) = 1234552 Test 126 hafs_regional_atm_ocn_wav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/hafs_regional_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/hafs_regional_1nest_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/hafs_regional_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/hafs_regional_1nest_atm Checking test 127 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 = 469.651805 - 0: The maximum resident set size (KB) = 533488 + 0: The total amount of wall time = 465.788770 + 0: The maximum resident set size (KB) = 532584 Test 127 hafs_regional_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/hafs_regional_telescopic_2nests_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/hafs_regional_telescopic_2nests_atm Checking test 128 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4201,28 +4203,28 @@ Checking test 128 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 514.102534 - 0: The maximum resident set size (KB) = 587556 + 0: The total amount of wall time = 514.837330 + 0: The maximum resident set size (KB) = 584548 Test 128 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/hafs_global_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/hafs_global_1nest_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/hafs_global_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/hafs_global_1nest_atm Checking test 129 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 = 215.332420 - 0: The maximum resident set size (KB) = 377720 + 0: The total amount of wall time = 215.294174 + 0: The maximum resident set size (KB) = 386344 Test 129 hafs_global_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/hafs_global_multiple_4nests_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/hafs_global_multiple_4nests_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/hafs_global_multiple_4nests_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/hafs_global_multiple_4nests_atm Checking test 130 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4240,14 +4242,14 @@ Checking test 130 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK - 0: The total amount of wall time = 588.392919 - 0: The maximum resident set size (KB) = 409684 + 0: The total amount of wall time = 590.764303 + 0: The maximum resident set size (KB) = 414832 Test 130 hafs_global_multiple_4nests_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/hafs_regional_specified_moving_1nest_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/hafs_regional_specified_moving_1nest_atm Checking test 131 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4256,28 +4258,28 @@ Checking test 131 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 277.715375 - 0: The maximum resident set size (KB) = 542748 + 0: The total amount of wall time = 277.200325 + 0: The maximum resident set size (KB) = 543736 Test 131 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/hafs_regional_storm_following_1nest_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/hafs_regional_storm_following_1nest_atm Checking test 132 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 266.553617 - 0: The maximum resident set size (KB) = 545712 + 0: The total amount of wall time = 267.829244 + 0: The maximum resident set size (KB) = 552340 Test 132 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/hafs_regional_storm_following_1nest_atm_ocn +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/hafs_regional_storm_following_1nest_atm_ocn Checking test 133 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4286,14 +4288,14 @@ Checking test 133 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 276.901146 - 0: The maximum resident set size (KB) = 612456 + 0: The total amount of wall time = 276.811206 + 0: The maximum resident set size (KB) = 614412 Test 133 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/hafs_regional_storm_following_1nest_atm_ocn_wav +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 134 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4304,28 +4306,28 @@ Checking test 134 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 624.688321 - 0: The maximum resident set size (KB) = 595984 + 0: The total amount of wall time = 619.887725 + 0: The maximum resident set size (KB) = 594056 Test 134 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/hafs_global_storm_following_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/hafs_global_storm_following_1nest_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/hafs_global_storm_following_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/hafs_global_storm_following_1nest_atm Checking test 135 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 79.235590 - 0: The maximum resident set size (KB) = 395880 + 0: The total amount of wall time = 79.930708 + 0: The maximum resident set size (KB) = 397420 Test 135 hafs_global_storm_following_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/hafs_regional_docn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/hafs_regional_docn +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/hafs_regional_docn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/hafs_regional_docn Checking test 136 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4333,14 +4335,14 @@ Checking test 136 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 = 380.480713 - 0: The maximum resident set size (KB) = 1211312 + 0: The total amount of wall time = 380.675227 + 0: The maximum resident set size (KB) = 1205732 Test 136 hafs_regional_docn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/hafs_regional_docn_oisst -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/hafs_regional_docn_oisst +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/hafs_regional_docn_oisst +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/hafs_regional_docn_oisst Checking test 137 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4348,131 +4350,131 @@ Checking test 137 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 = 378.059663 - 0: The maximum resident set size (KB) = 1195748 + 0: The total amount of wall time = 381.696744 + 0: The maximum resident set size (KB) = 1194748 Test 137 hafs_regional_docn_oisst PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/hafs_regional_datm_cdeps -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/hafs_regional_datm_cdeps +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/hafs_regional_datm_cdeps +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/hafs_regional_datm_cdeps Checking test 138 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 = 951.333216 - 0: The maximum resident set size (KB) = 1036776 + 0: The total amount of wall time = 945.128285 + 0: The maximum resident set size (KB) = 1041752 Test 138 hafs_regional_datm_cdeps PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/datm_cdeps_control_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/datm_cdeps_control_cfsr Checking test 139 datm_cdeps_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 154.306098 - 0: The maximum resident set size (KB) = 1058444 + 0: The total amount of wall time = 153.863288 + 0: The maximum resident set size (KB) = 1060388 Test 139 datm_cdeps_control_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/datm_cdeps_restart_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/datm_cdeps_restart_cfsr Checking test 140 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 = 93.171741 - 0: The maximum resident set size (KB) = 1017596 + 0: The total amount of wall time = 95.155368 + 0: The maximum resident set size (KB) = 1041584 Test 140 datm_cdeps_restart_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/datm_cdeps_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/datm_cdeps_control_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/datm_cdeps_control_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/datm_cdeps_control_gefs Checking test 141 datm_cdeps_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 154.530260 - 0: The maximum resident set size (KB) = 965236 + 0: The total amount of wall time = 151.212930 + 0: The maximum resident set size (KB) = 961912 Test 141 datm_cdeps_control_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/datm_cdeps_iau_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/datm_cdeps_iau_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/datm_cdeps_iau_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/datm_cdeps_iau_gefs Checking test 142 datm_cdeps_iau_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 155.934431 - 0: The maximum resident set size (KB) = 958692 + 0: The total amount of wall time = 154.934170 + 0: The maximum resident set size (KB) = 967488 Test 142 datm_cdeps_iau_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/datm_cdeps_stochy_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/datm_cdeps_stochy_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/datm_cdeps_stochy_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/datm_cdeps_stochy_gefs Checking test 143 datm_cdeps_stochy_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 155.408004 - 0: The maximum resident set size (KB) = 961680 + 0: The total amount of wall time = 152.586126 + 0: The maximum resident set size (KB) = 968980 Test 143 datm_cdeps_stochy_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/datm_cdeps_ciceC_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/datm_cdeps_ciceC_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/datm_cdeps_ciceC_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/datm_cdeps_ciceC_cfsr Checking test 144 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 160.380623 - 0: The maximum resident set size (KB) = 1067692 + 0: The total amount of wall time = 157.036143 + 0: The maximum resident set size (KB) = 1068708 Test 144 datm_cdeps_ciceC_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/datm_cdeps_bulk_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/datm_cdeps_bulk_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/datm_cdeps_bulk_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/datm_cdeps_bulk_cfsr Checking test 145 datm_cdeps_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 156.461604 - 0: The maximum resident set size (KB) = 1056100 + 0: The total amount of wall time = 157.191580 + 0: The maximum resident set size (KB) = 1070880 Test 145 datm_cdeps_bulk_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/datm_cdeps_bulk_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/datm_cdeps_bulk_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/datm_cdeps_bulk_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/datm_cdeps_bulk_gefs Checking test 146 datm_cdeps_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 150.847849 - 0: The maximum resident set size (KB) = 971700 + 0: The total amount of wall time = 154.255870 + 0: The maximum resident set size (KB) = 967824 Test 146 datm_cdeps_bulk_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/datm_cdeps_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/datm_cdeps_mx025_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/datm_cdeps_mx025_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/datm_cdeps_mx025_cfsr Checking test 147 datm_cdeps_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -4481,14 +4483,14 @@ Checking test 147 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 432.840536 - 0: The maximum resident set size (KB) = 885484 + 0: The total amount of wall time = 433.179844 + 0: The maximum resident set size (KB) = 876640 Test 147 datm_cdeps_mx025_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/datm_cdeps_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/datm_cdeps_mx025_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/datm_cdeps_mx025_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/datm_cdeps_mx025_gefs Checking test 148 datm_cdeps_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -4497,65 +4499,207 @@ Checking test 148 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 430.779602 - 0: The maximum resident set size (KB) = 935428 + 0: The total amount of wall time = 431.589975 + 0: The maximum resident set size (KB) = 931388 Test 148 datm_cdeps_mx025_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/datm_cdeps_multiple_files_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/datm_cdeps_multiple_files_cfsr Checking test 149 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 = 156.383494 - 0: The maximum resident set size (KB) = 1072864 + 0: The total amount of wall time = 155.537299 + 0: The maximum resident set size (KB) = 1065596 Test 149 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/datm_cdeps_3072x1536_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/datm_cdeps_3072x1536_cfsr Checking test 150 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 = 210.634739 - 0: The maximum resident set size (KB) = 2362900 + 0: The total amount of wall time = 212.858622 + 0: The maximum resident set size (KB) = 2363692 Test 150 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/datm_cdeps_gfs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/datm_cdeps_gfs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/datm_cdeps_gfs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/datm_cdeps_gfs Checking test 151 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 = 206.117896 - 0: The maximum resident set size (KB) = 2369904 + 0: The total amount of wall time = 214.160257 + 0: The maximum resident set size (KB) = 2300072 Test 151 datm_cdeps_gfs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/datm_cdeps_debug_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/datm_cdeps_debug_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/datm_cdeps_debug_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/datm_cdeps_debug_cfsr Checking test 152 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.141593 - 0: The maximum resident set size (KB) = 995592 + 0: The total amount of wall time = 452.861000 + 0: The maximum resident set size (KB) = 995428 Test 152 datm_cdeps_debug_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/control_atmwav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/control_atmwav -Checking test 153 control_atmwav results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/datm_cdeps_lnd_gswp3 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/datm_cdeps_lnd_gswp3 +Checking test 153 datm_cdeps_lnd_gswp3 results .... + Comparing ufs.cpld.lnd.out.2000-01-01-10800.tile1.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-01-10800.tile2.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-01-10800.tile3.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-01-10800.tile4.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-01-10800.tile5.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-01-10800.tile6.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-01-43200.tile1.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-01-43200.tile2.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-01-43200.tile3.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-01-43200.tile4.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-01-43200.tile5.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-01-43200.tile6.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile4.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK + + 0: The total amount of wall time = 7.444149 + 0: The maximum resident set size (KB) = 257124 + +Test 153 datm_cdeps_lnd_gswp3 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/datm_cdeps_lnd_gswp3 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/datm_cdeps_lnd_gswp3_rst +Checking test 154 datm_cdeps_lnd_gswp3_rst results .... + Comparing ufs.cpld.lnd.out.2000-01-01-54000.tile1.nc ............MISSING baseline + Comparing ufs.cpld.lnd.out.2000-01-01-54000.tile2.nc ............MISSING baseline + Comparing ufs.cpld.lnd.out.2000-01-01-54000.tile3.nc ............MISSING baseline + Comparing ufs.cpld.lnd.out.2000-01-01-54000.tile4.nc ............MISSING baseline + Comparing ufs.cpld.lnd.out.2000-01-01-54000.tile5.nc ............MISSING baseline + Comparing ufs.cpld.lnd.out.2000-01-01-54000.tile6.nc ............MISSING baseline + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile4.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK + + 0: The total amount of wall time = 12.286388 + 0: The maximum resident set size (KB) = 268764 + +Test 154 datm_cdeps_lnd_gswp3_rst FAIL Tries: 2 + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/control_p8_atmlnd_sbs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/control_p8_atmlnd_sbs +Checking test 155 control_p8_atmlnd_sbs results .... + Comparing sfcf000.tile1.nc .........OK + Comparing sfcf000.tile2.nc .........OK + Comparing sfcf000.tile3.nc .........OK + Comparing sfcf000.tile4.nc .........OK + Comparing sfcf000.tile5.nc .........OK + Comparing sfcf000.tile6.nc .........OK + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf000.tile1.nc .........OK + Comparing atmf000.tile2.nc .........OK + Comparing atmf000.tile3.nc .........OK + Comparing atmf000.tile4.nc .........OK + Comparing atmf000.tile5.nc .........OK + Comparing atmf000.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing ufs.cpld.cpl.hi.lnd.2021-03-22-43200.nc .........OK + Comparing ufs.cpld.cpl.hi.lnd.2021-03-23-21600.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile1.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile2.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile3.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile4.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile5.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile6.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile1.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile2.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile3.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile4.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK + + 0: The total amount of wall time = 201.759365 + 0: The maximum resident set size (KB) = 1610264 + +Test 155 control_p8_atmlnd_sbs PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/control_atmwav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/control_atmwav +Checking test 156 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -4598,15 +4742,15 @@ Checking test 153 control_atmwav results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 84.928321 - 0: The maximum resident set size (KB) = 660860 + 0: The total amount of wall time = 85.690269 + 0: The maximum resident set size (KB) = 653460 -Test 153 control_atmwav PASS +Test 156 control_atmwav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/atmaero_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/atmaero_control_p8 -Checking test 154 atmaero_control_p8 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/atmaero_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/atmaero_control_p8 +Checking test 157 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4649,15 +4793,15 @@ Checking test 154 atmaero_control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 222.258148 - 0: The maximum resident set size (KB) = 2981876 + 0: The total amount of wall time = 224.770061 + 0: The maximum resident set size (KB) = 2973480 -Test 154 atmaero_control_p8 PASS +Test 157 atmaero_control_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/atmaero_control_p8_rad -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/atmaero_control_p8_rad -Checking test 155 atmaero_control_p8_rad results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/atmaero_control_p8_rad +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/atmaero_control_p8_rad +Checking test 158 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4700,15 +4844,15 @@ Checking test 155 atmaero_control_p8_rad results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 276.727773 - 0: The maximum resident set size (KB) = 3050664 + 0: The total amount of wall time = 279.404102 + 0: The maximum resident set size (KB) = 3047444 -Test 155 atmaero_control_p8_rad PASS +Test 158 atmaero_control_p8_rad PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/atmaero_control_p8_rad_micro -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/atmaero_control_p8_rad_micro -Checking test 156 atmaero_control_p8_rad_micro results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/atmaero_control_p8_rad_micro +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/atmaero_control_p8_rad_micro +Checking test 159 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4751,15 +4895,15 @@ Checking test 156 atmaero_control_p8_rad_micro results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 281.553286 - 0: The maximum resident set size (KB) = 3057660 + 0: The total amount of wall time = 283.409061 + 0: The maximum resident set size (KB) = 3056140 -Test 156 atmaero_control_p8_rad_micro PASS +Test 159 atmaero_control_p8_rad_micro PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/regional_atmaq -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_6992/regional_atmaq -Checking test 157 regional_atmaq results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/regional_atmaq +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12284/regional_atmaq +Checking test 160 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing sfcf006.nc .........OK @@ -4774,12 +4918,55 @@ Checking test 157 regional_atmaq results .... Comparing RESTART/phy_data.nc .........OK Comparing RESTART/sfc_data.nc .........OK - 0: The total amount of wall time = 650.922255 - 0: The maximum resident set size (KB) = 1079820 + 0: The total amount of wall time = 654.969788 + 0: The maximum resident set size (KB) = 1087812 + +Test 160 regional_atmaq PASS + +FAILED TESTS: +Test datm_cdeps_lnd_gswp3_rst 154 failed in check_result failed +Test datm_cdeps_lnd_gswp3_rst 154 failed in run_test failed + +REGRESSION TEST FAILED +Thu Oct 27 04:42:40 UTC 2022 +Elapsed time: 03h:09m:30s. Have a nice day! +Thu Oct 27 15:04:05 UTC 2022 +Start Regression test + +Compile 001 elapsed time 65 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/datm_cdeps_lnd_gswp3 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_23673/datm_cdeps_lnd_gswp3 +Checking test 001 datm_cdeps_lnd_gswp3 results .... + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile4.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK + + 0: The total amount of wall time = 6.411261 + 0: The maximum resident set size (KB) = 266404 + +Test 001 datm_cdeps_lnd_gswp3 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/datm_cdeps_lnd_gswp3 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_23673/datm_cdeps_lnd_gswp3_rst +Checking test 002 datm_cdeps_lnd_gswp3_rst results .... + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile4.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK + + 0: The total amount of wall time = 11.688421 + 0: The maximum resident set size (KB) = 259940 -Test 157 regional_atmaq PASS +Test 002 datm_cdeps_lnd_gswp3_rst PASS REGRESSION TEST WAS SUCCESSFUL -Tue Oct 25 13:15:31 UTC 2022 -Elapsed time: 00h:58m:15s. Have a nice day! +Thu Oct 27 15:25:16 UTC 2022 +Elapsed time: 00h:21m:11s. Have a nice day! diff --git a/tests/RegressionTests_jet.intel.log b/tests/RegressionTests_jet.intel.log index 689872850b..e128be3f2f 100644 --- a/tests/RegressionTests_jet.intel.log +++ b/tests/RegressionTests_jet.intel.log @@ -1,32 +1,34 @@ -Tue Oct 25 15:46:51 GMT 2022 +Thu Oct 27 01:17:05 GMT 2022 Start Regression test -Compile 001 elapsed time 1989 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 002 elapsed time 1863 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 003 elapsed time 282 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 004 elapsed time 253 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 1362 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 006 elapsed time 1385 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 007 elapsed time 1350 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 008 elapsed time 1414 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 009 elapsed time 1313 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 010 elapsed time 1175 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 011 elapsed time 809 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 012 elapsed time 218 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 013 elapsed time 1228 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 014 elapsed time 1274 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 015 elapsed time 193 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 219 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 017 elapsed time 1611 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 018 elapsed time 1674 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 019 elapsed time 290 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 020 elapsed time 165 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 021 elapsed time 1651 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 022 elapsed time 1271 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 023 elapsed time 1322 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON - -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/cpld_control_p8 +Compile 001 elapsed time 1797 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 002 elapsed time 1634 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 003 elapsed time 306 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 004 elapsed time 281 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 1598 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 006 elapsed time 1420 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 007 elapsed time 1396 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 008 elapsed time 1493 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 009 elapsed time 1335 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 010 elapsed time 1245 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 011 elapsed time 1069 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 012 elapsed time 462 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 013 elapsed time 1439 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 014 elapsed time 1619 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 015 elapsed time 493 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 410 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 017 elapsed time 1731 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 018 elapsed time 1944 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 019 elapsed time 438 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 020 elapsed time 284 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 021 elapsed time 123 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 022 elapsed time 1745 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 023 elapsed time 2041 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 024 elapsed time 2134 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 025 elapsed time 1416 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON + +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/cpld_control_p8 Checking test 001 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -91,14 +93,14 @@ Checking test 001 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 455.925387 - 0: The maximum resident set size (KB) = 1760256 + 0: The total amount of wall time = 792.292081 + 0: The maximum resident set size (KB) = 1788292 Test 001 cpld_control_p8 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/cpld_restart_p8 +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/cpld_restart_p8 Checking test 002 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -151,14 +153,14 @@ Checking test 002 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 256.134501 - 0: The maximum resident set size (KB) = 1510516 + 0: The total amount of wall time = 1662.119384 + 0: The maximum resident set size (KB) = 1483996 Test 002 cpld_restart_p8 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/cpld_2threads_p8 +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/cpld_2threads_p8 Checking test 003 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -211,14 +213,14 @@ Checking test 003 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 917.460634 - 0: The maximum resident set size (KB) = 1969952 + 0: The total amount of wall time = 1322.396320 + 0: The maximum resident set size (KB) = 1968308 Test 003 cpld_2threads_p8 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/cpld_esmfthreads_p8 +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/cpld_esmfthreads_p8 Checking test 004 cpld_esmfthreads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -271,14 +273,14 @@ Checking test 004 cpld_esmfthreads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 484.724496 - 0: The maximum resident set size (KB) = 1978868 + 0: The total amount of wall time = 1176.324991 + 0: The maximum resident set size (KB) = 1965628 Test 004 cpld_esmfthreads_p8 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/cpld_decomp_p8 +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/cpld_decomp_p8 Checking test 005 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -331,14 +333,14 @@ Checking test 005 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 459.966839 - 0: The maximum resident set size (KB) = 1760140 + 0: The total amount of wall time = 828.179837 + 0: The maximum resident set size (KB) = 1780828 Test 005 cpld_decomp_p8 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/cpld_mpi_p8 +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/cpld_mpi_p8 Checking test 006 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -391,14 +393,14 @@ Checking test 006 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 385.259251 - 0: The maximum resident set size (KB) = 1725380 + 0: The total amount of wall time = 1072.323673 + 0: The maximum resident set size (KB) = 1744144 Test 006 cpld_mpi_p8 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/cpld_control_ciceC_p8 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/cpld_control_ciceC_p8 +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/cpld_control_ciceC_p8 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/cpld_control_ciceC_p8 Checking test 007 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -463,14 +465,14 @@ Checking test 007 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 452.690799 - 0: The maximum resident set size (KB) = 1796004 + 0: The total amount of wall time = 1069.835693 + 0: The maximum resident set size (KB) = 1793580 Test 007 cpld_control_ciceC_p8 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/cpld_control_noaero_p8 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/cpld_control_noaero_p8 +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/cpld_control_noaero_p8 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/cpld_control_noaero_p8 Checking test 008 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -534,14 +536,14 @@ Checking test 008 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 312.463140 - 0: The maximum resident set size (KB) = 1628068 + 0: The total amount of wall time = 737.909861 + 0: The maximum resident set size (KB) = 1626620 Test 008 cpld_control_noaero_p8 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/cpld_control_c96_noaero_p8 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/cpld_control_nowave_noaero_p8 +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/cpld_control_c96_noaero_p8 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/cpld_control_nowave_noaero_p8 Checking test 009 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -603,14 +605,14 @@ Checking test 009 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 335.742093 - 0: The maximum resident set size (KB) = 1666536 + 0: The total amount of wall time = 857.054329 + 0: The maximum resident set size (KB) = 1680792 Test 009 cpld_control_nowave_noaero_p8 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/cpld_debug_p8 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/cpld_debug_p8 +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/cpld_debug_p8 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/cpld_debug_p8 Checking test 010 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -663,14 +665,14 @@ Checking test 010 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 859.144904 - 0: The maximum resident set size (KB) = 1782336 + 0: The total amount of wall time = 935.638405 + 0: The maximum resident set size (KB) = 1818352 Test 010 cpld_debug_p8 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/cpld_debug_noaero_p8 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/cpld_debug_noaero_p8 +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/cpld_debug_noaero_p8 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/cpld_debug_noaero_p8 Checking test 011 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -722,14 +724,14 @@ Checking test 011 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 521.080008 - 0: The maximum resident set size (KB) = 1647596 + 0: The total amount of wall time = 538.292448 + 0: The maximum resident set size (KB) = 1638600 Test 011 cpld_debug_noaero_p8 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/cpld_control_noaero_p8_agrid -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/cpld_control_noaero_p8_agrid +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/cpld_control_noaero_p8_agrid +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/cpld_control_noaero_p8_agrid Checking test 012 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -791,14 +793,14 @@ Checking test 012 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 359.678907 - 0: The maximum resident set size (KB) = 1660772 + 0: The total amount of wall time = 938.931269 + 0: The maximum resident set size (KB) = 1682908 Test 012 cpld_control_noaero_p8_agrid PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/cpld_control_c48 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/cpld_control_c48 +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/cpld_control_c48 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/cpld_control_c48 Checking test 013 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -848,14 +850,14 @@ Checking test 013 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 703.999475 - 0: The maximum resident set size (KB) = 2771172 + 0: The total amount of wall time = 1295.386671 + 0: The maximum resident set size (KB) = 2769524 Test 013 cpld_control_c48 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/cpld_warmstart_c48 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/cpld_warmstart_c48 +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/cpld_warmstart_c48 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/cpld_warmstart_c48 Checking test 014 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -905,14 +907,14 @@ Checking test 014 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 208.468873 - 0: The maximum resident set size (KB) = 2770400 + 0: The total amount of wall time = 422.790635 + 0: The maximum resident set size (KB) = 2764748 Test 014 cpld_warmstart_c48 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/cpld_warmstart_c48 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/cpld_restart_c48 +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/cpld_warmstart_c48 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/cpld_restart_c48 Checking test 015 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -962,14 +964,14 @@ Checking test 015 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 112.892994 - 0: The maximum resident set size (KB) = 2215756 + 0: The total amount of wall time = 166.055691 + 0: The maximum resident set size (KB) = 2211564 Test 015 cpld_restart_c48 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/control +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/control +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/control Checking test 016 control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1016,14 +1018,14 @@ Checking test 016 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 187.681605 - 0: The maximum resident set size (KB) = 570908 + 0: The total amount of wall time = 253.815152 + 0: The maximum resident set size (KB) = 573700 Test 016 control PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/control_decomp +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/control +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/control_decomp Checking test 017 control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1066,14 +1068,14 @@ Checking test 017 control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 188.064333 - 0: The maximum resident set size (KB) = 565856 + 0: The total amount of wall time = 457.033709 + 0: The maximum resident set size (KB) = 566136 Test 017 control_decomp PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/control_2dwrtdecomp +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/control +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/control_2dwrtdecomp Checking test 018 control_2dwrtdecomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1084,14 +1086,14 @@ Checking test 018 control_2dwrtdecomp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 181.872762 - 0: The maximum resident set size (KB) = 575212 + 0: The total amount of wall time = 397.344225 + 0: The maximum resident set size (KB) = 573008 Test 018 control_2dwrtdecomp PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/control_2threads +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/control +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/control_2threads Checking test 019 control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1134,14 +1136,14 @@ Checking test 019 control_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 412.410156 - 0: The maximum resident set size (KB) = 620276 + 0: The total amount of wall time = 701.152295 + 0: The maximum resident set size (KB) = 623036 Test 019 control_2threads PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/control_restart +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/control +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/control_restart Checking test 020 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1180,14 +1182,14 @@ Checking test 020 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 93.833447 - 0: The maximum resident set size (KB) = 374264 + 0: The total amount of wall time = 104.530051 + 0: The maximum resident set size (KB) = 375544 Test 020 control_restart PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/control_fhzero +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/control +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/control_fhzero Checking test 021 control_fhzero results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -1230,14 +1232,14 @@ Checking test 021 control_fhzero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 173.224911 - 0: The maximum resident set size (KB) = 568536 + 0: The total amount of wall time = 395.839607 + 0: The maximum resident set size (KB) = 572248 Test 021 control_fhzero PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/control_CubedSphereGrid -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/control_CubedSphereGrid +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/control_CubedSphereGrid +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/control_CubedSphereGrid Checking test 022 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1264,28 +1266,28 @@ Checking test 022 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 173.329065 - 0: The maximum resident set size (KB) = 574996 + 0: The total amount of wall time = 517.292334 + 0: The maximum resident set size (KB) = 573500 Test 022 control_CubedSphereGrid PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/control_CubedSphereGrid_parallel -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/control_CubedSphereGrid_parallel +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/control_CubedSphereGrid_parallel +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/control_CubedSphereGrid_parallel Checking test 023 control_CubedSphereGrid_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 174.814144 - 0: The maximum resident set size (KB) = 577020 + 0: The total amount of wall time = 282.833422 + 0: The maximum resident set size (KB) = 570856 Test 023 control_CubedSphereGrid_parallel PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/control_latlon -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/control_latlon +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/control_latlon +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/control_latlon Checking test 024 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1296,32 +1298,32 @@ Checking test 024 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 179.001756 - 0: The maximum resident set size (KB) = 572464 + 0: The total amount of wall time = 283.663328 + 0: The maximum resident set size (KB) = 577672 Test 024 control_latlon PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/control_wrtGauss_netcdf_parallel +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/control_wrtGauss_netcdf_parallel +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/control_wrtGauss_netcdf_parallel Checking test 025 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 183.322530 - 0: The maximum resident set size (KB) = 573984 + 0: The total amount of wall time = 301.089189 + 0: The maximum resident set size (KB) = 572752 Test 025 control_wrtGauss_netcdf_parallel PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/control_c48 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/control_c48 +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/control_c48 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/control_c48 Checking test 026 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1360,14 +1362,14 @@ Checking test 026 control_c48 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0: The total amount of wall time = 592.569387 -0: The maximum resident set size (KB) = 786528 +0: The total amount of wall time = 620.860004 +0: The maximum resident set size (KB) = 789684 Test 026 control_c48 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/control_c192 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/control_c192 +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/control_c192 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/control_c192 Checking test 027 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1378,14 +1380,14 @@ Checking test 027 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 724.893916 - 0: The maximum resident set size (KB) = 683820 + 0: The total amount of wall time = 1013.876291 + 0: The maximum resident set size (KB) = 694952 Test 027 control_c192 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/control_c384 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/control_c384 +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/control_c384 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/control_c384 Checking test 028 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1396,14 +1398,14 @@ Checking test 028 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 938.490523 - 0: The maximum resident set size (KB) = 1074252 + 0: The total amount of wall time = 1318.952458 + 0: The maximum resident set size (KB) = 1078916 -Test 028 control_c384 PASS Tries: 2 +Test 028 control_c384 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/control_c384gdas -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/control_c384gdas +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/control_c384gdas +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/control_c384gdas Checking test 029 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1446,14 +1448,14 @@ Checking test 029 control_c384gdas results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 791.699444 - 0: The maximum resident set size (KB) = 1144208 + 0: The total amount of wall time = 1210.641892 + 0: The maximum resident set size (KB) = 1160688 Test 029 control_c384gdas PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/control_c384_progsigma -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/control_c384_progsigma +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/control_c384_progsigma +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/control_c384_progsigma Checking test 030 control_c384_progsigma results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1464,14 +1466,14 @@ Checking test 030 control_c384_progsigma results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 1047.796724 - 0: The maximum resident set size (KB) = 997764 + 0: The total amount of wall time = 1319.969160 + 0: The maximum resident set size (KB) = 1000904 Test 030 control_c384_progsigma PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/control_stochy -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/control_stochy +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/control_stochy +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/control_stochy Checking test 031 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1482,28 +1484,28 @@ Checking test 031 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 121.565865 - 0: The maximum resident set size (KB) = 577868 + 0: The total amount of wall time = 184.602413 + 0: The maximum resident set size (KB) = 578852 Test 031 control_stochy PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/control_stochy -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/control_stochy_restart +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/control_stochy +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/control_stochy_restart Checking test 032 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 62.760069 - 0: The maximum resident set size (KB) = 389264 + 0: The total amount of wall time = 93.835926 + 0: The maximum resident set size (KB) = 392920 Test 032 control_stochy_restart PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/control_lndp -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/control_lndp +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/control_lndp +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/control_lndp Checking test 033 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1514,14 +1516,14 @@ Checking test 033 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 109.421919 - 0: The maximum resident set size (KB) = 573056 + 0: The total amount of wall time = 146.493384 + 0: The maximum resident set size (KB) = 578048 Test 033 control_lndp PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/control_iovr4 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/control_iovr4 +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/control_iovr4 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/control_iovr4 Checking test 034 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1536,14 +1538,14 @@ Checking test 034 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 191.099506 - 0: The maximum resident set size (KB) = 576668 + 0: The total amount of wall time = 377.725055 + 0: The maximum resident set size (KB) = 568980 Test 034 control_iovr4 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/control_iovr5 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/control_iovr5 +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/control_iovr5 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/control_iovr5 Checking test 035 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1558,14 +1560,14 @@ Checking test 035 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 184.698898 - 0: The maximum resident set size (KB) = 570812 + 0: The total amount of wall time = 498.651719 + 0: The maximum resident set size (KB) = 573204 Test 035 control_iovr5 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/control_p8 +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/control_p8 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/control_p8 Checking test 036 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1612,14 +1614,14 @@ Checking test 036 control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 227.596660 - 0: The maximum resident set size (KB) = 1535592 + 0: The total amount of wall time = 376.706947 + 0: The maximum resident set size (KB) = 1539432 Test 036 control_p8 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/control_p8_lndp -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/control_p8_lndp +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/control_p8_lndp +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/control_p8_lndp Checking test 037 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1638,14 +1640,14 @@ Checking test 037 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 423.649810 - 0: The maximum resident set size (KB) = 1551644 + 0: The total amount of wall time = 511.760609 + 0: The maximum resident set size (KB) = 1535168 Test 037 control_p8_lndp PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/control_restart_p8 +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/control_p8 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/control_restart_p8 Checking test 038 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1684,14 +1686,14 @@ Checking test 038 control_restart_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 116.455401 - 0: The maximum resident set size (KB) = 773268 + 0: The total amount of wall time = 185.702108 + 0: The maximum resident set size (KB) = 766548 Test 038 control_restart_p8 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/control_decomp_p8 +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/control_p8 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/control_decomp_p8 Checking test 039 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1734,14 +1736,14 @@ Checking test 039 control_decomp_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 230.809421 - 0: The maximum resident set size (KB) = 1534452 + 0: The total amount of wall time = 302.827590 + 0: The maximum resident set size (KB) = 1526076 Test 039 control_decomp_p8 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/control_2threads_p8 +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/control_p8 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/control_2threads_p8 Checking test 040 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1784,14 +1786,14 @@ Checking test 040 control_2threads_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 526.558336 - 0: The maximum resident set size (KB) = 1621504 + 0: The total amount of wall time = 566.733997 + 0: The maximum resident set size (KB) = 1617228 Test 040 control_2threads_p8 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/control_p8_rrtmgp -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/control_p8_rrtmgp +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/control_p8_rrtmgp +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/control_p8_rrtmgp Checking test 041 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1838,14 +1840,14 @@ Checking test 041 control_p8_rrtmgp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 272.538545 - 0: The maximum resident set size (KB) = 1673800 + 0: The total amount of wall time = 382.316172 + 0: The maximum resident set size (KB) = 1658192 Test 041 control_p8_rrtmgp PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/merra2_thompson -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/merra2_thompson +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/merra2_thompson +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/merra2_thompson Checking test 042 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1892,14 +1894,14 @@ Checking test 042 merra2_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 236.784150 - 0: The maximum resident set size (KB) = 1546144 + 0: The total amount of wall time = 365.194663 + 0: The maximum resident set size (KB) = 1555220 Test 042 merra2_thompson PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/fv3_regional_control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/regional_control +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/fv3_regional_control +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/regional_control Checking test 043 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1910,28 +1912,28 @@ Checking test 043 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 470.755485 - 0: The maximum resident set size (KB) = 747784 + 0: The total amount of wall time = 646.347225 + 0: The maximum resident set size (KB) = 746404 Test 043 regional_control PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/fv3_regional_control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/regional_restart +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/fv3_regional_control +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/regional_restart Checking test 044 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 = 261.418298 - 0: The maximum resident set size (KB) = 741376 + 0: The total amount of wall time = 356.929288 + 0: The maximum resident set size (KB) = 741380 Test 044 regional_restart PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/fv3_regional_control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/regional_control_2dwrtdecomp +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/fv3_regional_control +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/regional_control_2dwrtdecomp Checking test 045 regional_control_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1942,14 +1944,14 @@ Checking test 045 regional_control_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 470.546261 - 0: The maximum resident set size (KB) = 747852 + 0: The total amount of wall time = 646.288805 + 0: The maximum resident set size (KB) = 744720 Test 045 regional_control_2dwrtdecomp PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/fv3_regional_noquilt -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/regional_noquilt +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/fv3_regional_noquilt +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/regional_noquilt Checking test 046 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1957,14 +1959,14 @@ Checking test 046 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 505.111876 - 0: The maximum resident set size (KB) = 732324 + 0: The total amount of wall time = 659.690834 + 0: The maximum resident set size (KB) = 728792 Test 046 regional_noquilt PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/fv3_regional_control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/regional_2threads +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/fv3_regional_control +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/regional_2threads Checking test 047 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1975,28 +1977,28 @@ Checking test 047 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 1089.379527 - 0: The maximum resident set size (KB) = 714500 + 0: The total amount of wall time = 1335.093338 + 0: The maximum resident set size (KB) = 716168 Test 047 regional_2threads PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/fv3_regional_netcdf_parallel -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/regional_netcdf_parallel +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/fv3_regional_netcdf_parallel +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/regional_netcdf_parallel Checking test 048 regional_netcdf_parallel results .... - Comparing dynf000.nc .........OK + Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK - 0: The total amount of wall time = 461.883214 - 0: The maximum resident set size (KB) = 740500 + 0: The total amount of wall time = 684.827180 + 0: The maximum resident set size (KB) = 742688 Test 048 regional_netcdf_parallel PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/fv3_regional_3km -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/regional_3km +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/fv3_regional_3km +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/regional_3km Checking test 049 regional_3km results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2007,14 +2009,14 @@ Checking test 049 regional_3km results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 348.882690 - 0: The maximum resident set size (KB) = 771356 + 0: The total amount of wall time = 589.708099 + 0: The maximum resident set size (KB) = 775352 Test 049 regional_3km PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/fv3_regional_3km -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/regional_3km_decomp +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/fv3_regional_3km +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/regional_3km_decomp Checking test 050 regional_3km_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2025,14 +2027,14 @@ Checking test 050 regional_3km_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 375.775166 - 0: The maximum resident set size (KB) = 781076 + 0: The total amount of wall time = 624.561616 + 0: The maximum resident set size (KB) = 780224 Test 050 regional_3km_decomp PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/rap_control +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_control +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/rap_control Checking test 051 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2079,14 +2081,14 @@ Checking test 051 rap_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 575.763423 - 0: The maximum resident set size (KB) = 945660 + 0: The total amount of wall time = 826.229247 + 0: The maximum resident set size (KB) = 956196 Test 051 rap_control PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_rrtmgp -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/rap_rrtmgp +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_rrtmgp +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/rap_rrtmgp Checking test 052 rap_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2133,14 +2135,14 @@ Checking test 052 rap_rrtmgp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 624.647491 - 0: The maximum resident set size (KB) = 1072232 + 0: The total amount of wall time = 940.907307 + 0: The maximum resident set size (KB) = 1074164 Test 052 rap_rrtmgp PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/regional_spp_sppt_shum_skeb -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/regional_spp_sppt_shum_skeb +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/regional_spp_sppt_shum_skeb +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/regional_spp_sppt_shum_skeb Checking test 053 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2151,14 +2153,14 @@ Checking test 053 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 836.297562 - 0: The maximum resident set size (KB) = 1062596 + 0: The total amount of wall time = 982.397558 + 0: The maximum resident set size (KB) = 1064328 Test 053 regional_spp_sppt_shum_skeb PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/rap_decomp +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_control +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/rap_decomp Checking test 054 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2205,14 +2207,14 @@ Checking test 054 rap_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 613.885878 - 0: The maximum resident set size (KB) = 944020 + 0: The total amount of wall time = 970.799977 + 0: The maximum resident set size (KB) = 949048 Test 054 rap_decomp PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/rap_2threads +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_control +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/rap_2threads Checking test 055 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2259,14 +2261,14 @@ Checking test 055 rap_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1274.931261 - 0: The maximum resident set size (KB) = 1012840 + 0: The total amount of wall time = 1741.189652 + 0: The maximum resident set size (KB) = 1012972 Test 055 rap_2threads PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/rap_restart +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_control +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/rap_restart Checking test 056 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2305,14 +2307,14 @@ Checking test 056 rap_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 307.995367 - 0: The maximum resident set size (KB) = 827124 + 0: The total amount of wall time = 477.356344 + 0: The maximum resident set size (KB) = 830732 Test 056 rap_restart PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/rap_sfcdiff +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_sfcdiff +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/rap_sfcdiff Checking test 057 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2359,14 +2361,14 @@ Checking test 057 rap_sfcdiff results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 592.950057 - 0: The maximum resident set size (KB) = 957664 + 0: The total amount of wall time = 876.531620 + 0: The maximum resident set size (KB) = 945744 Test 057 rap_sfcdiff PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/rap_sfcdiff_decomp +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_sfcdiff +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/rap_sfcdiff_decomp Checking test 058 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2413,14 +2415,14 @@ Checking test 058 rap_sfcdiff_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 616.198269 - 0: The maximum resident set size (KB) = 946056 + 0: The total amount of wall time = 998.652510 + 0: The maximum resident set size (KB) = 934012 Test 058 rap_sfcdiff_decomp PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/rap_sfcdiff_restart +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_sfcdiff +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/rap_sfcdiff_restart Checking test 059 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2459,14 +2461,14 @@ Checking test 059 rap_sfcdiff_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 439.024565 - 0: The maximum resident set size (KB) = 836196 + 0: The total amount of wall time = 750.218307 + 0: The maximum resident set size (KB) = 837916 Test 059 rap_sfcdiff_restart PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/hrrr_control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/hrrr_control +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/hrrr_control +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/hrrr_control Checking test 060 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2513,14 +2515,14 @@ Checking test 060 hrrr_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 560.642594 - 0: The maximum resident set size (KB) = 948572 + 0: The total amount of wall time = 899.965624 + 0: The maximum resident set size (KB) = 952600 Test 060 hrrr_control PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/hrrr_control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/hrrr_control_decomp +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/hrrr_control +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/hrrr_control_decomp Checking test 061 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2567,14 +2569,14 @@ Checking test 061 hrrr_control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 581.129626 - 0: The maximum resident set size (KB) = 940748 + 0: The total amount of wall time = 955.098101 + 0: The maximum resident set size (KB) = 940312 Test 061 hrrr_control_decomp PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/hrrr_control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/hrrr_control_2threads +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/hrrr_control +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/hrrr_control_2threads Checking test 062 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2621,14 +2623,14 @@ Checking test 062 hrrr_control_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1212.939891 - 0: The maximum resident set size (KB) = 1010320 + 0: The total amount of wall time = 1770.884474 + 0: The maximum resident set size (KB) = 1004600 Test 062 hrrr_control_2threads PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/hrrr_control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/hrrr_control_restart +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/hrrr_control +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/hrrr_control_restart Checking test 063 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2667,14 +2669,14 @@ Checking test 063 hrrr_control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 426.331884 - 0: The maximum resident set size (KB) = 823180 + 0: The total amount of wall time = 792.866891 + 0: The maximum resident set size (KB) = 826160 Test 063 hrrr_control_restart PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/rrfs_v1beta -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/rrfs_v1beta +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/rrfs_v1beta +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/rrfs_v1beta Checking test 064 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2721,14 +2723,14 @@ Checking test 064 rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 580.640334 - 0: The maximum resident set size (KB) = 941980 + 0: The total amount of wall time = 1271.269914 + 0: The maximum resident set size (KB) = 941116 Test 064 rrfs_v1beta PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/rrfs_v1nssl -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/rrfs_v1nssl +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/rrfs_v1nssl +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/rrfs_v1nssl Checking test 065 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2743,14 +2745,14 @@ Checking test 065 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 692.174927 - 0: The maximum resident set size (KB) = 635652 + 0: The total amount of wall time = 1447.902634 + 0: The maximum resident set size (KB) = 627136 Test 065 rrfs_v1nssl PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/rrfs_v1nssl_nohailnoccn +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/rrfs_v1nssl_nohailnoccn Checking test 066 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2765,14 +2767,14 @@ Checking test 066 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 670.656125 - 0: The maximum resident set size (KB) = 628284 + 0: The total amount of wall time = 1243.035779 + 0: The maximum resident set size (KB) = 632248 Test 066 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/rrfs_conus13km_hrrr_warm +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/rrfs_conus13km_hrrr_warm +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/rrfs_conus13km_hrrr_warm Checking test 067 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2781,14 +2783,14 @@ Checking test 067 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 165.999111 - 0: The maximum resident set size (KB) = 853880 + 0: The total amount of wall time = 261.256573 + 0: The maximum resident set size (KB) = 846608 Test 067 rrfs_conus13km_hrrr_warm PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/rrfs_smoke_conus13km_hrrr_warm Checking test 068 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2797,14 +2799,14 @@ Checking test 068 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 187.462901 - 0: The maximum resident set size (KB) = 881628 + 0: The total amount of wall time = 567.133783 + 0: The maximum resident set size (KB) = 874004 Test 068 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/rrfs_conus13km_radar_tten_warm +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/rrfs_conus13km_radar_tten_warm Checking test 069 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2813,14 +2815,14 @@ Checking test 069 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 169.345807 - 0: The maximum resident set size (KB) = 853940 + 0: The total amount of wall time = 300.421372 + 0: The maximum resident set size (KB) = 849268 Test 069 rrfs_conus13km_radar_tten_warm PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/rrfs_conus13km_hrrr_warm_2threads +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/rrfs_conus13km_hrrr_warm +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/rrfs_conus13km_hrrr_warm_2threads Checking test 070 rrfs_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2829,14 +2831,14 @@ Checking test 070 rrfs_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 324.218514 - 0: The maximum resident set size (KB) = 817872 + 0: The total amount of wall time = 516.025766 + 0: The maximum resident set size (KB) = 809420 Test 070 rrfs_conus13km_hrrr_warm_2threads PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/rrfs_conus13km_radar_tten_warm_2threads +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/rrfs_conus13km_radar_tten_warm_2threads Checking test 071 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2845,14 +2847,14 @@ Checking test 071 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 327.185624 - 0: The maximum resident set size (KB) = 810372 + 0: The total amount of wall time = 424.645952 + 0: The maximum resident set size (KB) = 814180 Test 071 rrfs_conus13km_radar_tten_warm_2threads PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/control_csawmg -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/control_csawmg +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/control_csawmg +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/control_csawmg Checking test 072 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2863,14 +2865,14 @@ Checking test 072 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 495.805897 - 0: The maximum resident set size (KB) = 667228 + 0: The total amount of wall time = 624.000119 + 0: The maximum resident set size (KB) = 667964 Test 072 control_csawmg PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/control_csawmgt -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/control_csawmgt +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/control_csawmgt +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/control_csawmgt Checking test 073 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2881,14 +2883,14 @@ Checking test 073 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 465.972600 - 0: The maximum resident set size (KB) = 669996 + 0: The total amount of wall time = 651.730357 + 0: The maximum resident set size (KB) = 665652 Test 073 control_csawmgt PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/control_ras -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/control_ras +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/control_ras +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/control_ras Checking test 074 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2899,82 +2901,82 @@ Checking test 074 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 248.870669 - 0: The maximum resident set size (KB) = 633184 + 0: The total amount of wall time = 396.836416 + 0: The maximum resident set size (KB) = 645016 Test 074 control_ras PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/control_wam -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/control_wam +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/control_wam +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/control_wam Checking test 075 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 146.105960 - 0: The maximum resident set size (KB) = 473868 + 0: The total amount of wall time = 250.248971 + 0: The maximum resident set size (KB) = 480560 Test 075 control_wam PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/rrfs_conus13km_hrrr_warm_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/rrfs_conus13km_hrrr_warm_debug Checking test 076 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 951.461866 - 0: The maximum resident set size (KB) = 873392 + 0: The total amount of wall time = 1095.271483 + 0: The maximum resident set size (KB) = 883640 Test 076 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/rrfs_conus13km_radar_tten_warm_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/rrfs_conus13km_radar_tten_warm_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/rrfs_conus13km_radar_tten_warm_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/rrfs_conus13km_radar_tten_warm_debug Checking test 077 rrfs_conus13km_radar_tten_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 950.002380 - 0: The maximum resident set size (KB) = 878788 + 0: The total amount of wall time = 1088.890687 + 0: The maximum resident set size (KB) = 874980 Test 077 rrfs_conus13km_radar_tten_warm_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/control_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/control_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/control_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/control_debug Checking test 078 control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 192.387390 - 0: The maximum resident set size (KB) = 735040 + 0: The total amount of wall time = 1164.766700 + 0: The maximum resident set size (KB) = 737688 Test 078 control_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/control_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/control_2threads_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/control_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/control_2threads_debug Checking test 079 control_2threads_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 341.125171 - 0: The maximum resident set size (KB) = 783536 + 0: The total amount of wall time = 447.317209 + 0: The maximum resident set size (KB) = 782964 Test 079 control_2threads_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/control_CubedSphereGrid_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/control_CubedSphereGrid_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/control_CubedSphereGrid_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/control_CubedSphereGrid_debug Checking test 080 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3001,348 +3003,300 @@ Checking test 080 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 209.505617 - 0: The maximum resident set size (KB) = 732792 + 0: The total amount of wall time = 346.413680 + 0: The maximum resident set size (KB) = 733716 Test 080 control_CubedSphereGrid_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/control_wrtGauss_netcdf_parallel_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/control_wrtGauss_netcdf_parallel_debug Checking test 081 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK + Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK - Comparing atmf001.nc ............ALT CHECK......OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 197.052723 - 0: The maximum resident set size (KB) = 733056 + 0: The total amount of wall time = 418.736003 + 0: The maximum resident set size (KB) = 738512 Test 081 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/control_stochy_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/control_stochy_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/control_stochy_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/control_stochy_debug Checking test 082 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 225.816665 - 0: The maximum resident set size (KB) = 740092 + 0: The total amount of wall time = 1481.241091 + 0: The maximum resident set size (KB) = 741840 Test 082 control_stochy_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/control_lndp_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/control_lndp_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/control_lndp_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/control_lndp_debug Checking test 083 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 196.664382 - 0: The maximum resident set size (KB) = 743496 + 0: The total amount of wall time = 282.620688 + 0: The maximum resident set size (KB) = 741796 Test 083 control_lndp_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/control_csawmg_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/control_csawmg_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/control_csawmg_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/control_csawmg_debug Checking test 084 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 312.063347 - 0: The maximum resident set size (KB) = 790808 + 0: The total amount of wall time = 545.949648 + 0: The maximum resident set size (KB) = 789980 Test 084 control_csawmg_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/control_csawmgt_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/control_csawmgt_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/control_csawmgt_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/control_csawmgt_debug Checking test 085 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 308.939383 - 0: The maximum resident set size (KB) = 785932 + 0: The total amount of wall time = 487.839712 + 0: The maximum resident set size (KB) = 778316 Test 085 control_csawmgt_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/control_ras_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/control_ras_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/control_ras_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/control_ras_debug Checking test 086 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 205.374213 - 0: The maximum resident set size (KB) = 748040 + 0: The total amount of wall time = 423.491666 + 0: The maximum resident set size (KB) = 745116 Test 086 control_ras_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/control_diag_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/control_diag_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/control_diag_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/control_diag_debug Checking test 087 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 210.023081 - 0: The maximum resident set size (KB) = 794856 + 0: The total amount of wall time = 1590.174358 + 0: The maximum resident set size (KB) = 792768 Test 087 control_diag_debug PASS +Test 088 control_debug_p8 FAIL -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/control_debug_p8 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/control_debug_p8 -Checking test 088 control_debug_p8 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 231.096322 - 0: The maximum resident set size (KB) = 1561912 -Test 088 control_debug_p8 PASS - - -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/fv3_regional_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/regional_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/fv3_regional_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/regional_debug Checking test 089 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 341.332497 - 0: The maximum resident set size (KB) = 761556 + 0: The total amount of wall time = 453.489677 + 0: The maximum resident set size (KB) = 760784 Test 089 regional_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_control_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/rap_control_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_control_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/rap_control_debug Checking test 090 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 363.356324 - 0: The maximum resident set size (KB) = 1108216 + 0: The total amount of wall time = 621.650380 + 0: The maximum resident set size (KB) = 1114260 Test 090 rap_control_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/hrrr_control_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/hrrr_control_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/hrrr_control_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/hrrr_control_debug Checking test 091 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 350.494808 - 0: The maximum resident set size (KB) = 1106812 + 0: The total amount of wall time = 468.858751 + 0: The maximum resident set size (KB) = 1103788 Test 091 hrrr_control_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_control_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/rap_unified_drag_suite_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_control_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/rap_unified_drag_suite_debug Checking test 092 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 359.341348 - 0: The maximum resident set size (KB) = 1106740 + 0: The total amount of wall time = 526.094064 + 0: The maximum resident set size (KB) = 1111088 Test 092 rap_unified_drag_suite_debug PASS +Test 093 rap_diag_debug FAIL -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_diag_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/rap_diag_debug -Checking test 093 rap_diag_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 374.242198 - 0: The maximum resident set size (KB) = 1195120 - -Test 093 rap_diag_debug PASS - -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_cires_ugwp_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/rap_cires_ugwp_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_cires_ugwp_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/rap_cires_ugwp_debug Checking test 094 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 361.759118 - 0: The maximum resident set size (KB) = 1107044 + 0: The total amount of wall time = 445.491472 + 0: The maximum resident set size (KB) = 1111524 Test 094 rap_cires_ugwp_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_cires_ugwp_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/rap_unified_ugwp_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_cires_ugwp_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/rap_unified_ugwp_debug Checking test 095 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 365.900534 - 0: The maximum resident set size (KB) = 1107056 - -Test 095 rap_unified_ugwp_debug PASS - - -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_lndp_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/rap_lndp_debug -Checking test 096 rap_lndp_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK + 0: The total amount of wall time = 570.155068 + 0: The maximum resident set size (KB) = 1109948 - 0: The total amount of wall time = 359.755488 - 0: The maximum resident set size (KB) = 1112152 +Test 095 rap_unified_ugwp_debug PASS Tries: 2 -Test 096 rap_lndp_debug PASS +Test 096 rap_lndp_debug FAIL -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_flake_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/rap_flake_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_flake_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/rap_flake_debug Checking test 097 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 368.001848 - 0: The maximum resident set size (KB) = 1116068 + 0: The total amount of wall time = 399.552225 + 0: The maximum resident set size (KB) = 1114584 Test 097 rap_flake_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_progcld_thompson_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/rap_progcld_thompson_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_progcld_thompson_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/rap_progcld_thompson_debug Checking test 098 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 360.140302 - 0: The maximum resident set size (KB) = 1109008 + 0: The total amount of wall time = 508.078512 + 0: The maximum resident set size (KB) = 1107512 Test 098 rap_progcld_thompson_debug PASS +Test 099 rap_noah_debug FAIL -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_noah_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/rap_noah_debug -Checking test 099 rap_noah_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - 0: The total amount of wall time = 361.213256 - 0: The maximum resident set size (KB) = 1120060 - -Test 099 rap_noah_debug PASS - - -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_rrtmgp_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/rap_rrtmgp_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_rrtmgp_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/rap_rrtmgp_debug Checking test 100 rap_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 594.334155 - 0: The maximum resident set size (KB) = 1241868 + 0: The total amount of wall time = 659.312886 + 0: The maximum resident set size (KB) = 1237344 Test 100 rap_rrtmgp_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_sfcdiff_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/rap_sfcdiff_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_sfcdiff_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/rap_sfcdiff_debug Checking test 101 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 363.201277 - 0: The maximum resident set size (KB) = 1119656 + 0: The total amount of wall time = 562.753968 + 0: The maximum resident set size (KB) = 1117268 Test 101 rap_sfcdiff_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/rap_noah_sfcdiff_cires_ugwp_debug Checking test 102 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 598.180999 - 0: The maximum resident set size (KB) = 1109640 + 0: The total amount of wall time = 714.348352 + 0: The maximum resident set size (KB) = 1112856 Test 102 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/rrfs_v1beta_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/rrfs_v1beta_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/rrfs_v1beta_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/rrfs_v1beta_debug Checking test 103 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 351.542684 - 0: The maximum resident set size (KB) = 1113868 + 0: The total amount of wall time = 456.477272 + 0: The maximum resident set size (KB) = 1113096 Test 103 rrfs_v1beta_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/control_wam_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/control_wam_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/control_wam_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/control_wam_debug Checking test 104 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 365.111374 - 0: The maximum resident set size (KB) = 424460 + 0: The total amount of wall time = 409.768800 + 0: The maximum resident set size (KB) = 435176 Test 104 control_wam_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/regional_spp_sppt_shum_skeb_dyn32_phy32 +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 105 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3353,14 +3307,14 @@ Checking test 105 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 792.592528 - 0: The maximum resident set size (KB) = 966572 + 0: The total amount of wall time = 1360.674646 + 0: The maximum resident set size (KB) = 959908 Test 105 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/rap_control_dyn32_phy32 +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/rap_control_dyn32_phy32 Checking test 106 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3407,14 +3361,14 @@ Checking test 106 rap_control_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 474.417833 - 0: The maximum resident set size (KB) = 838008 + 0: The total amount of wall time = 1023.098725 + 0: The maximum resident set size (KB) = 850268 Test 106 rap_control_dyn32_phy32 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/hrrr_control_dyn32_phy32 +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/hrrr_control_dyn32_phy32 Checking test 107 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3461,14 +3415,14 @@ Checking test 107 hrrr_control_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 271.647832 - 0: The maximum resident set size (KB) = 834936 + 0: The total amount of wall time = 531.494618 + 0: The maximum resident set size (KB) = 823344 Test 107 hrrr_control_dyn32_phy32 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/rap_2threads_dyn32_phy32 +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/rap_2threads_dyn32_phy32 Checking test 108 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3515,14 +3469,14 @@ Checking test 108 rap_2threads_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1038.423052 - 0: The maximum resident set size (KB) = 888876 + 0: The total amount of wall time = 1704.362086 + 0: The maximum resident set size (KB) = 892232 Test 108 rap_2threads_dyn32_phy32 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/hrrr_control_2threads_dyn32_phy32 +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/hrrr_control_2threads_dyn32_phy32 Checking test 109 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3569,14 +3523,14 @@ Checking test 109 hrrr_control_2threads_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 540.160357 - 0: The maximum resident set size (KB) = 876668 + 0: The total amount of wall time = 912.647135 + 0: The maximum resident set size (KB) = 877996 Test 109 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/hrrr_control_decomp_dyn32_phy32 +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/hrrr_control_decomp_dyn32_phy32 Checking test 110 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3623,14 +3577,14 @@ Checking test 110 hrrr_control_decomp_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 260.820291 - 0: The maximum resident set size (KB) = 823052 + 0: The total amount of wall time = 540.155168 + 0: The maximum resident set size (KB) = 824128 Test 110 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/rap_restart_dyn32_phy32 +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/rap_restart_dyn32_phy32 Checking test 111 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3669,14 +3623,14 @@ Checking test 111 rap_restart_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 342.672917 - 0: The maximum resident set size (KB) = 809504 + 0: The total amount of wall time = 339.908090 + 0: The maximum resident set size (KB) = 803500 Test 111 rap_restart_dyn32_phy32 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/hrrr_control_restart_dyn32_phy32 +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/hrrr_control_restart_dyn32_phy32 Checking test 112 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3715,14 +3669,14 @@ Checking test 112 hrrr_control_restart_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 134.184578 - 0: The maximum resident set size (KB) = 761392 + 0: The total amount of wall time = 363.962254 + 0: The maximum resident set size (KB) = 763636 Test 112 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_control_dyn64_phy32 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/rap_control_dyn64_phy32 +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_control_dyn64_phy32 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/rap_control_dyn64_phy32 Checking test 113 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3769,146 +3723,67 @@ Checking test 113 rap_control_dyn64_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 302.634783 - 0: The maximum resident set size (KB) = 868460 + 0: The total amount of wall time = 728.246623 + 0: The maximum resident set size (KB) = 871192 Test 113 rap_control_dyn64_phy32 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/rap_control_debug_dyn32_phy32 +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_control_debug_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/rap_control_debug_dyn32_phy32 Checking test 114 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 357.571633 - 0: The maximum resident set size (KB) = 998492 + 0: The total amount of wall time = 428.739918 + 0: The maximum resident set size (KB) = 1002972 Test 114 rap_control_debug_dyn32_phy32 PASS +Test 115 hrrr_control_debug_dyn32_phy32 FAIL -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/hrrr_control_debug_dyn32_phy32 -Checking test 115 hrrr_control_debug_dyn32_phy32 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 352.752196 - 0: The maximum resident set size (KB) = 991252 -Test 115 hrrr_control_debug_dyn32_phy32 PASS - - -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/rap_control_dyn64_phy32_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_control_debug_dyn64_phy32 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/rap_control_dyn64_phy32_debug Checking test 116 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 377.563690 - 0: The maximum resident set size (KB) = 1025452 + 0: The total amount of wall time = 539.257432 + 0: The maximum resident set size (KB) = 1039652 Test 116 rap_control_dyn64_phy32_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/hafs_regional_atm -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/hafs_regional_atm +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/hafs_regional_atm +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/hafs_regional_atm Checking test 117 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 737.532206 - 0: The maximum resident set size (KB) = 1173216 + 0: The total amount of wall time = 1718.792548 + 0: The maximum resident set size (KB) = 1150408 Test 117 hafs_regional_atm PASS +Test 118 hafs_regional_atm_thompson_gfdlsf FAIL -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/hafs_regional_atm_thompson_gfdlsf -Checking test 118 hafs_regional_atm_thompson_gfdlsf results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - - 0: The total amount of wall time = 831.779845 - 0: The maximum resident set size (KB) = 1500648 - -Test 118 hafs_regional_atm_thompson_gfdlsf PASS - - -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/hafs_regional_atm_ocn -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/hafs_regional_atm_ocn -Checking test 119 hafs_regional_atm_ocn results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing archv.2019_241_06.a .........OK - Comparing archs.2019_241_06.a .........OK - Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK - Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - - 0: The total amount of wall time = 539.372335 - 0: The maximum resident set size (KB) = 1232600 - -Test 119 hafs_regional_atm_ocn PASS +Test 119 hafs_regional_atm_ocn FAIL +Test 120 hafs_regional_atm_wav FAIL -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/hafs_regional_atm_wav -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/hafs_regional_atm_wav -Checking test 120 hafs_regional_atm_wav results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing out_grd.ww3 .........OK - Comparing out_pnt.ww3 .........OK - Comparing 20190829.060000.restart.ww3 .........OK - Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - - 0: The total amount of wall time = 895.569278 - 0: The maximum resident set size (KB) = 1302452 +Test 121 hafs_regional_atm_ocn_wav FAIL -Test 120 hafs_regional_atm_wav PASS +Test 122 hafs_regional_docn FAIL -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/hafs_regional_atm_ocn_wav -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/hafs_regional_atm_ocn_wav -Checking test 121 hafs_regional_atm_ocn_wav results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing archv.2019_241_06.a .........OK - Comparing archs.2019_241_06.a .........OK - Comparing out_grd.ww3 .........OK - Comparing out_pnt.ww3 .........OK - Comparing 20190829.060000.restart.ww3 .........OK - Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - - 0: The total amount of wall time = 1008.685645 - 0: The maximum resident set size (KB) = 1328204 - -Test 121 hafs_regional_atm_ocn_wav PASS - - -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/hafs_regional_docn -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/hafs_regional_docn -Checking test 122 hafs_regional_docn results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK - Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - - 0: The total amount of wall time = 549.185985 - 0: The maximum resident set size (KB) = 1265208 - -Test 122 hafs_regional_docn PASS - - -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/hafs_regional_docn_oisst -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/hafs_regional_docn_oisst +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/hafs_regional_docn_oisst +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/hafs_regional_docn_oisst Checking test 123 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3916,131 +3791,120 @@ Checking test 123 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 529.692905 - 0: The maximum resident set size (KB) = 1263296 + 0: The total amount of wall time = 1598.832371 + 0: The maximum resident set size (KB) = 1258768 Test 123 hafs_regional_docn_oisst PASS +Test 124 hafs_regional_datm_cdeps FAIL -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/hafs_regional_datm_cdeps -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/hafs_regional_datm_cdeps -Checking test 124 hafs_regional_datm_cdeps results .... - Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK - Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK - Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - - 0: The total amount of wall time = 1307.055590 - 0: The maximum resident set size (KB) = 979024 -Test 124 hafs_regional_datm_cdeps PASS - - -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/datm_cdeps_control_cfsr +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/datm_cdeps_control_cfsr +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/datm_cdeps_control_cfsr Checking test 125 datm_cdeps_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 231.245814 - 0: The maximum resident set size (KB) = 966372 + 0: The total amount of wall time = 451.877584 + 0: The maximum resident set size (KB) = 964564 Test 125 datm_cdeps_control_cfsr PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/datm_cdeps_restart_cfsr +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/datm_cdeps_control_cfsr +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/datm_cdeps_restart_cfsr Checking test 126 datm_cdeps_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 133.789684 - 0: The maximum resident set size (KB) = 930728 + 0: The total amount of wall time = 630.889289 + 0: The maximum resident set size (KB) = 934780 Test 126 datm_cdeps_restart_cfsr PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/datm_cdeps_control_gefs -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/datm_cdeps_control_gefs +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/datm_cdeps_control_gefs +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/datm_cdeps_control_gefs Checking test 127 datm_cdeps_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 203.194709 - 0: The maximum resident set size (KB) = 857492 + 0: The total amount of wall time = 879.016385 + 0: The maximum resident set size (KB) = 860016 Test 127 datm_cdeps_control_gefs PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/datm_cdeps_iau_gefs -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/datm_cdeps_iau_gefs +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/datm_cdeps_iau_gefs +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/datm_cdeps_iau_gefs Checking test 128 datm_cdeps_iau_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 205.970433 - 0: The maximum resident set size (KB) = 867908 + 0: The total amount of wall time = 834.107447 + 0: The maximum resident set size (KB) = 868792 Test 128 datm_cdeps_iau_gefs PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/datm_cdeps_stochy_gefs -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/datm_cdeps_stochy_gefs +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/datm_cdeps_stochy_gefs +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/datm_cdeps_stochy_gefs Checking test 129 datm_cdeps_stochy_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 202.166417 - 0: The maximum resident set size (KB) = 865136 + 0: The total amount of wall time = 880.403922 + 0: The maximum resident set size (KB) = 863288 Test 129 datm_cdeps_stochy_gefs PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/datm_cdeps_ciceC_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/datm_cdeps_ciceC_cfsr +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/datm_cdeps_ciceC_cfsr +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/datm_cdeps_ciceC_cfsr Checking test 130 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 208.837577 - 0: The maximum resident set size (KB) = 979812 + 0: The total amount of wall time = 508.137829 + 0: The maximum resident set size (KB) = 977720 Test 130 datm_cdeps_ciceC_cfsr PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/datm_cdeps_bulk_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/datm_cdeps_bulk_cfsr +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/datm_cdeps_bulk_cfsr +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/datm_cdeps_bulk_cfsr Checking test 131 datm_cdeps_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 211.999634 - 0: The maximum resident set size (KB) = 960984 + 0: The total amount of wall time = 500.413380 + 0: The maximum resident set size (KB) = 967664 Test 131 datm_cdeps_bulk_cfsr PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/datm_cdeps_bulk_gefs -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/datm_cdeps_bulk_gefs +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/datm_cdeps_bulk_gefs +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/datm_cdeps_bulk_gefs Checking test 132 datm_cdeps_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 204.153986 - 0: The maximum resident set size (KB) = 857332 + 0: The total amount of wall time = 804.304850 + 0: The maximum resident set size (KB) = 867664 Test 132 datm_cdeps_bulk_gefs PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/datm_cdeps_mx025_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/datm_cdeps_mx025_cfsr +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/datm_cdeps_mx025_cfsr +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/datm_cdeps_mx025_cfsr Checking test 133 datm_cdeps_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -4049,14 +3913,14 @@ Checking test 133 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 570.793554 - 0: The maximum resident set size (KB) = 764344 + 0: The total amount of wall time = 599.124906 + 0: The maximum resident set size (KB) = 767980 Test 133 datm_cdeps_mx025_cfsr PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/datm_cdeps_mx025_gefs -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/datm_cdeps_mx025_gefs +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/datm_cdeps_mx025_gefs +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/datm_cdeps_mx025_gefs Checking test 134 datm_cdeps_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -4065,65 +3929,207 @@ Checking test 134 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 580.285113 - 0: The maximum resident set size (KB) = 733040 + 0: The total amount of wall time = 602.437804 + 0: The maximum resident set size (KB) = 737676 Test 134 datm_cdeps_mx025_gefs PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/datm_cdeps_multiple_files_cfsr +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/datm_cdeps_control_cfsr +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/datm_cdeps_multiple_files_cfsr Checking test 135 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 205.281731 - 0: The maximum resident set size (KB) = 956532 + 0: The total amount of wall time = 601.411207 + 0: The maximum resident set size (KB) = 968956 Test 135 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/datm_cdeps_3072x1536_cfsr +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/datm_cdeps_3072x1536_cfsr Checking test 136 datm_cdeps_3072x1536_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 280.552268 - 0: The maximum resident set size (KB) = 2252960 + 0: The total amount of wall time = 310.190025 + 0: The maximum resident set size (KB) = 2253208 -Test 136 datm_cdeps_3072x1536_cfsr PASS +Test 136 datm_cdeps_3072x1536_cfsr PASS Tries: 2 -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/datm_cdeps_gfs -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/datm_cdeps_gfs +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/datm_cdeps_gfs +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/datm_cdeps_gfs Checking test 137 datm_cdeps_gfs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 287.252200 - 0: The maximum resident set size (KB) = 2255012 + 0: The total amount of wall time = 650.460365 + 0: The maximum resident set size (KB) = 2251212 Test 137 datm_cdeps_gfs PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/datm_cdeps_debug_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/datm_cdeps_debug_cfsr +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/datm_cdeps_debug_cfsr +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/datm_cdeps_debug_cfsr Checking test 138 datm_cdeps_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 578.299404 - 0: The maximum resident set size (KB) = 913948 + 0: The total amount of wall time = 586.877644 + 0: The maximum resident set size (KB) = 924512 Test 138 datm_cdeps_debug_cfsr PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/control_atmwav -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/control_atmwav -Checking test 139 control_atmwav results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/datm_cdeps_lnd_gswp3 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/datm_cdeps_lnd_gswp3 +Checking test 139 datm_cdeps_lnd_gswp3 results .... + Comparing ufs.cpld.lnd.out.2000-01-01-10800.tile1.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-01-10800.tile2.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-01-10800.tile3.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-01-10800.tile4.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-01-10800.tile5.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-01-10800.tile6.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-01-43200.tile1.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-01-43200.tile2.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-01-43200.tile3.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-01-43200.tile4.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-01-43200.tile5.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-01-43200.tile6.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile4.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK + + 0: The total amount of wall time = 23.782240 + 0: The maximum resident set size (KB) = 253576 + +Test 139 datm_cdeps_lnd_gswp3 PASS + + +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/datm_cdeps_lnd_gswp3 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/datm_cdeps_lnd_gswp3_rst +Checking test 140 datm_cdeps_lnd_gswp3_rst results .... + Comparing ufs.cpld.lnd.out.2000-01-01-54000.tile1.nc ............MISSING baseline + Comparing ufs.cpld.lnd.out.2000-01-01-54000.tile2.nc ............MISSING baseline + Comparing ufs.cpld.lnd.out.2000-01-01-54000.tile3.nc ............MISSING baseline + Comparing ufs.cpld.lnd.out.2000-01-01-54000.tile4.nc ............MISSING baseline + Comparing ufs.cpld.lnd.out.2000-01-01-54000.tile5.nc ............MISSING baseline + Comparing ufs.cpld.lnd.out.2000-01-01-54000.tile6.nc ............MISSING baseline + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile4.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK + + 0: The total amount of wall time = 20.175831 + 0: The maximum resident set size (KB) = 241368 + +Test 140 datm_cdeps_lnd_gswp3_rst FAIL Tries: 2 + + +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/control_p8_atmlnd_sbs +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/control_p8_atmlnd_sbs +Checking test 141 control_p8_atmlnd_sbs results .... + Comparing sfcf000.tile1.nc .........OK + Comparing sfcf000.tile2.nc .........OK + Comparing sfcf000.tile3.nc .........OK + Comparing sfcf000.tile4.nc .........OK + Comparing sfcf000.tile5.nc .........OK + Comparing sfcf000.tile6.nc .........OK + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf000.tile1.nc .........OK + Comparing atmf000.tile2.nc .........OK + Comparing atmf000.tile3.nc .........OK + Comparing atmf000.tile4.nc .........OK + Comparing atmf000.tile5.nc .........OK + Comparing atmf000.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing ufs.cpld.cpl.hi.lnd.2021-03-22-43200.nc .........OK + Comparing ufs.cpld.cpl.hi.lnd.2021-03-23-21600.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile1.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile2.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile3.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile4.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile5.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile6.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile1.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile2.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile3.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile4.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK + + 0: The total amount of wall time = 292.345407 + 0: The maximum resident set size (KB) = 1583588 + +Test 141 control_p8_atmlnd_sbs PASS + + +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/control_atmwav +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/control_atmwav +Checking test 142 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -4166,15 +4172,15 @@ Checking test 139 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.433995 - 0: The maximum resident set size (KB) = 596408 + 0: The total amount of wall time = 122.995086 + 0: The maximum resident set size (KB) = 590916 -Test 139 control_atmwav PASS +Test 142 control_atmwav PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/atmaero_control_p8 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/atmaero_control_p8 -Checking test 140 atmaero_control_p8 results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/atmaero_control_p8 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/atmaero_control_p8 +Checking test 143 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4217,15 +4223,15 @@ Checking test 140 atmaero_control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 304.043201 - 0: The maximum resident set size (KB) = 1633124 + 0: The total amount of wall time = 310.510154 + 0: The maximum resident set size (KB) = 1645108 -Test 140 atmaero_control_p8 PASS +Test 143 atmaero_control_p8 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/atmaero_control_p8_rad -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/atmaero_control_p8_rad -Checking test 141 atmaero_control_p8_rad results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/atmaero_control_p8_rad +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/atmaero_control_p8_rad +Checking test 144 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4268,15 +4274,15 @@ Checking test 141 atmaero_control_p8_rad results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 377.121549 - 0: The maximum resident set size (KB) = 1662428 + 0: The total amount of wall time = 382.966727 + 0: The maximum resident set size (KB) = 1664296 -Test 141 atmaero_control_p8_rad PASS +Test 144 atmaero_control_p8_rad PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/atmaero_control_p8_rad_micro -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/atmaero_control_p8_rad_micro -Checking test 142 atmaero_control_p8_rad_micro results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/atmaero_control_p8_rad_micro +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/atmaero_control_p8_rad_micro +Checking test 145 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4319,15 +4325,15 @@ Checking test 142 atmaero_control_p8_rad_micro results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 386.066500 - 0: The maximum resident set size (KB) = 1664020 + 0: The total amount of wall time = 403.652354 + 0: The maximum resident set size (KB) = 1668540 -Test 142 atmaero_control_p8_rad_micro PASS +Test 145 atmaero_control_p8_rad_micro PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221024/INTEL/regional_atmaq -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_65825/regional_atmaq -Checking test 143 regional_atmaq results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/regional_atmaq +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_209694/regional_atmaq +Checking test 146 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing sfcf006.nc .........OK @@ -4342,12 +4348,230 @@ Checking test 143 regional_atmaq results .... Comparing RESTART/phy_data.nc .........OK Comparing RESTART/sfc_data.nc .........OK - 0: The total amount of wall time = 997.005645 - 0: The maximum resident set size (KB) = 1077744 + 0: The total amount of wall time = 1044.110984 + 0: The maximum resident set size (KB) = 1048476 + +Test 146 regional_atmaq PASS Tries: 2 + +FAILED TESTS: +Test control_debug_p8 088 failed in run_test failed +Test rap_diag_debug 093 failed in run_test failed +Test rap_lndp_debug 096 failed in run_test failed +Test rap_noah_debug 099 failed in run_test failed +Test hrrr_control_debug_dyn32_phy32 115 failed in run_test failed +Test hafs_regional_atm_thompson_gfdlsf 118 failed in run_test failed +Test hafs_regional_atm_ocn 119 failed in run_test failed +Test hafs_regional_atm_wav 120 failed in run_test failed +Test hafs_regional_atm_ocn_wav 121 failed in run_test failed +Test hafs_regional_docn 122 failed in run_test failed +Test hafs_regional_datm_cdeps 124 failed in run_test failed +Test datm_cdeps_lnd_gswp3_rst 140 failed in check_result failed +Test datm_cdeps_lnd_gswp3_rst 140 failed in run_test failed + +REGRESSION TEST FAILED +Thu Oct 27 05:09:14 GMT 2022 +Elapsed time: 03h:52m:10s. Have a nice day! +Thu Oct 27 16:52:51 GMT 2022 +Start Regression test + +Compile 001 elapsed time 843 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 002 elapsed time 231 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 003 elapsed time 1600 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 004 elapsed time 1682 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 005 elapsed time 101 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON + +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/control_debug_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_9237/control_debug_p8 +Checking test 001 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 = 231.558134 + 0: The maximum resident set size (KB) = 1550916 + +Test 001 control_debug_p8 PASS + + +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_diag_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_9237/rap_diag_debug +Checking test 002 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 = 386.264602 + 0: The maximum resident set size (KB) = 1190532 + +Test 002 rap_diag_debug PASS + + +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_lndp_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_9237/rap_lndp_debug +Checking test 003 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 = 372.300613 + 0: The maximum resident set size (KB) = 1107588 + +Test 003 rap_lndp_debug PASS + + +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_noah_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_9237/rap_noah_debug +Checking test 004 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 = 369.386691 + 0: The maximum resident set size (KB) = 1107340 + +Test 004 rap_noah_debug PASS + + +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_9237/hrrr_control_debug_dyn32_phy32 +Checking test 005 hrrr_control_debug_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + + 0: The total amount of wall time = 352.061333 + 0: The maximum resident set size (KB) = 999184 + +Test 005 hrrr_control_debug_dyn32_phy32 PASS + + +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_9237/hafs_regional_atm_thompson_gfdlsf +Checking test 006 hafs_regional_atm_thompson_gfdlsf results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + + 0: The total amount of wall time = 860.713936 + 0: The maximum resident set size (KB) = 1503464 + +Test 006 hafs_regional_atm_thompson_gfdlsf PASS + + +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/hafs_regional_atm_ocn +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_9237/hafs_regional_atm_ocn +Checking test 007 hafs_regional_atm_ocn results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing archv.2019_241_06.a .........OK + Comparing archs.2019_241_06.a .........OK + Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK + Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK + + 0: The total amount of wall time = 550.733323 + 0: The maximum resident set size (KB) = 1241268 + +Test 007 hafs_regional_atm_ocn PASS + + +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/hafs_regional_atm_wav +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_9237/hafs_regional_atm_wav +Checking test 008 hafs_regional_atm_wav results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing out_grd.ww3 .........OK + Comparing out_pnt.ww3 .........OK + Comparing 20190829.060000.restart.ww3 .........OK + Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK + + 0: The total amount of wall time = 912.450883 + 0: The maximum resident set size (KB) = 1298420 + +Test 008 hafs_regional_atm_wav PASS + + +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/hafs_regional_atm_ocn_wav +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_9237/hafs_regional_atm_ocn_wav +Checking test 009 hafs_regional_atm_ocn_wav results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing archv.2019_241_06.a .........OK + Comparing archs.2019_241_06.a .........OK + Comparing out_grd.ww3 .........OK + Comparing out_pnt.ww3 .........OK + Comparing 20190829.060000.restart.ww3 .........OK + Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK + + 0: The total amount of wall time = 1004.721013 + 0: The maximum resident set size (KB) = 1309584 + +Test 009 hafs_regional_atm_ocn_wav PASS + + +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/hafs_regional_docn +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_9237/hafs_regional_docn +Checking test 010 hafs_regional_docn results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK + Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK + Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK + + 0: The total amount of wall time = 547.291006 + 0: The maximum resident set size (KB) = 1278576 + +Test 010 hafs_regional_docn PASS + + +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/hafs_regional_datm_cdeps +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_9237/hafs_regional_datm_cdeps +Checking test 011 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 = 1243.175954 + 0: The maximum resident set size (KB) = 975960 + +Test 011 hafs_regional_datm_cdeps PASS + + +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/datm_cdeps_lnd_gswp3 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_9237/datm_cdeps_lnd_gswp3 +Checking test 012 datm_cdeps_lnd_gswp3 results .... + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile4.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK + + 0: The total amount of wall time = 11.910054 + 0: The maximum resident set size (KB) = 249744 + +Test 012 datm_cdeps_lnd_gswp3 PASS + + +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20221026/INTEL/datm_cdeps_lnd_gswp3 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_9237/datm_cdeps_lnd_gswp3_rst +Checking test 013 datm_cdeps_lnd_gswp3_rst results .... + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile4.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK + + 0: The total amount of wall time = 21.502364 + 0: The maximum resident set size (KB) = 259908 -Test 143 regional_atmaq PASS +Test 013 datm_cdeps_lnd_gswp3_rst PASS REGRESSION TEST WAS SUCCESSFUL -Tue Oct 25 17:46:52 GMT 2022 -Elapsed time: 02h:00m:02s. Have a nice day! +Thu Oct 27 18:09:00 GMT 2022 +Elapsed time: 01h:16m:10s. Have a nice day! diff --git a/tests/RegressionTests_wcoss2.intel.log b/tests/RegressionTests_wcoss2.intel.log index 72125cfc60..e2ca344a86 100644 --- a/tests/RegressionTests_wcoss2.intel.log +++ b/tests/RegressionTests_wcoss2.intel.log @@ -1,24 +1,25 @@ -Tue Oct 25 14:49:37 UTC 2022 +Thu Oct 27 14:47:14 UTC 2022 Start Regression test -Compile 001 elapsed time 639 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 985 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 353 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 645 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 005 elapsed time 881 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 503 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 007 elapsed time 577 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 008 elapsed time 942 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 147 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 010 elapsed time 862 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 407 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 571 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 013 elapsed time 234 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 014 elapsed time 642 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 015 elapsed time 397 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/cpld_control_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39282/cpld_control_noaero_p8 +Compile 001 elapsed time 508 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 350 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 352 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 348 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 005 elapsed time 462 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 795 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 591 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 008 elapsed time 982 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 924 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 010 elapsed time 715 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 741 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 636 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 013 elapsed time 377 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 014 elapsed time 472 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 015 elapsed time 325 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 016 elapsed time 480 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/cpld_control_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1131/cpld_control_noaero_p8 Checking test 001 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -82,14 +83,14 @@ Checking test 001 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 263.849462 -The maximum resident set size (KB) = 1576808 +The total amount of wall time = 261.713998 +The maximum resident set size (KB) = 1579880 Test 001 cpld_control_noaero_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/cpld_control_c96_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39282/cpld_control_nowave_noaero_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/cpld_control_c96_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1131/cpld_control_nowave_noaero_p8 Checking test 002 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -151,14 +152,14 @@ Checking test 002 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 300.148709 -The maximum resident set size (KB) = 1634100 +The total amount of wall time = 297.165200 +The maximum resident set size (KB) = 1624420 Test 002 cpld_control_nowave_noaero_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/cpld_control_noaero_p8_agrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39282/cpld_control_noaero_p8_agrid +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/cpld_control_noaero_p8_agrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1131/cpld_control_noaero_p8_agrid Checking test 003 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -220,14 +221,14 @@ Checking test 003 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 310.205920 -The maximum resident set size (KB) = 1630168 +The total amount of wall time = 304.289836 +The maximum resident set size (KB) = 1623248 Test 003 cpld_control_noaero_p8_agrid PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39282/control +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1131/control Checking test 004 control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -274,14 +275,14 @@ Checking test 004 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 134.273032 -The maximum resident set size (KB) = 513408 +The total amount of wall time = 134.227022 +The maximum resident set size (KB) = 513680 Test 004 control PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39282/control_decomp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1131/control_decomp Checking test 005 control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -324,14 +325,14 @@ Checking test 005 control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 135.795700 -The maximum resident set size (KB) = 516004 +The total amount of wall time = 136.445720 +The maximum resident set size (KB) = 515876 Test 005 control_decomp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39282/control_2dwrtdecomp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1131/control_2dwrtdecomp Checking test 006 control_2dwrtdecomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -342,14 +343,14 @@ Checking test 006 control_2dwrtdecomp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 133.120669 -The maximum resident set size (KB) = 515200 +The total amount of wall time = 130.885503 +The maximum resident set size (KB) = 519048 Test 006 control_2dwrtdecomp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39282/control_2threads +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1131/control_2threads Checking test 007 control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -392,14 +393,14 @@ Checking test 007 control_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 400.097697 -The maximum resident set size (KB) = 563168 +The total amount of wall time = 400.494966 +The maximum resident set size (KB) = 563912 Test 007 control_2threads PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39282/control_restart +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1131/control_restart Checking test 008 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -438,14 +439,14 @@ Checking test 008 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 69.030109 -The maximum resident set size (KB) = 271232 +The total amount of wall time = 68.792056 +The maximum resident set size (KB) = 256324 Test 008 control_restart PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39282/control_fhzero +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1131/control_fhzero Checking test 009 control_fhzero results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -488,14 +489,14 @@ Checking test 009 control_fhzero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 126.828342 -The maximum resident set size (KB) = 518064 +The total amount of wall time = 126.109913 +The maximum resident set size (KB) = 513556 Test 009 control_fhzero PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/control_CubedSphereGrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39282/control_CubedSphereGrid +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/control_CubedSphereGrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1131/control_CubedSphereGrid Checking test 010 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -522,14 +523,14 @@ Checking test 010 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 133.789544 -The maximum resident set size (KB) = 513200 +The total amount of wall time = 127.446172 +The maximum resident set size (KB) = 512024 Test 010 control_CubedSphereGrid PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/control_latlon -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39282/control_latlon +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/control_latlon +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1131/control_latlon Checking test 011 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -540,14 +541,14 @@ Checking test 011 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 131.677392 -The maximum resident set size (KB) = 514352 +The total amount of wall time = 130.445510 +The maximum resident set size (KB) = 517712 Test 011 control_latlon PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39282/control_wrtGauss_netcdf_parallel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/control_wrtGauss_netcdf_parallel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1131/control_wrtGauss_netcdf_parallel Checking test 012 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -558,14 +559,14 @@ Checking test 012 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 133.785086 -The maximum resident set size (KB) = 517328 +The total amount of wall time = 131.495057 +The maximum resident set size (KB) = 514820 Test 012 control_wrtGauss_netcdf_parallel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39282/control_c48 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1131/control_c48 Checking test 013 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -604,14 +605,14 @@ Checking test 013 control_c48 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 326.520045 -The maximum resident set size (KB) = 666816 +The total amount of wall time = 325.627147 +The maximum resident set size (KB) = 666476 Test 013 control_c48 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/control_c192 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39282/control_c192 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/control_c192 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1131/control_c192 Checking test 014 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -622,14 +623,14 @@ Checking test 014 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 540.786608 -The maximum resident set size (KB) = 613692 +The total amount of wall time = 529.838761 +The maximum resident set size (KB) = 610252 Test 014 control_c192 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/control_c384 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39282/control_c384 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/control_c384 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1131/control_c384 Checking test 015 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -640,14 +641,14 @@ Checking test 015 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 1656.675087 -The maximum resident set size (KB) = 882112 +The total amount of wall time = 1649.353402 +The maximum resident set size (KB) = 878648 Test 015 control_c384 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/control_c384gdas -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39282/control_c384gdas +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/control_c384gdas +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1131/control_c384gdas Checking test 016 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -690,32 +691,16 @@ Checking test 016 control_c384gdas results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 1430.742152 -The maximum resident set size (KB) = 1014496 +The total amount of wall time = 1416.633074 +The maximum resident set size (KB) = 1014364 Test 016 control_c384gdas PASS +Test 017 control_c384_progsigma FAIL -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/control_c384_progsigma -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39282/control_c384_progsigma -Checking test 017 control_c384_progsigma results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF12 .........OK - -The total amount of wall time = 1690.168784 -The maximum resident set size (KB) = 901840 -Test 017 control_c384_progsigma PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39282/control_stochy +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/control_stochy +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1131/control_stochy Checking test 018 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -726,28 +711,28 @@ Checking test 018 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 90.605721 -The maximum resident set size (KB) = 519040 +The total amount of wall time = 90.598574 +The maximum resident set size (KB) = 519068 Test 018 control_stochy PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39282/control_stochy_restart +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/control_stochy +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1131/control_stochy_restart Checking test 019 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 46.381019 -The maximum resident set size (KB) = 289304 +The total amount of wall time = 46.381723 +The maximum resident set size (KB) = 290868 Test 019 control_stochy_restart PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/control_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39282/control_lndp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/control_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1131/control_lndp Checking test 020 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -758,14 +743,14 @@ Checking test 020 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 80.989419 -The maximum resident set size (KB) = 521144 +The total amount of wall time = 80.817988 +The maximum resident set size (KB) = 521400 Test 020 control_lndp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/control_iovr4 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39282/control_iovr4 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/control_iovr4 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1131/control_iovr4 Checking test 021 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -780,14 +765,14 @@ Checking test 021 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 136.243397 -The maximum resident set size (KB) = 514652 +The total amount of wall time = 132.942257 +The maximum resident set size (KB) = 515840 Test 021 control_iovr4 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/control_iovr5 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39282/control_iovr5 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/control_iovr5 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1131/control_iovr5 Checking test 022 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -802,14 +787,14 @@ Checking test 022 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 134.486550 -The maximum resident set size (KB) = 520216 +The total amount of wall time = 133.237134 +The maximum resident set size (KB) = 513912 Test 022 control_iovr5 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39282/control_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1131/control_p8 Checking test 023 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -856,14 +841,14 @@ Checking test 023 control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 179.019536 -The maximum resident set size (KB) = 1488348 +The total amount of wall time = 176.423796 +The maximum resident set size (KB) = 1484632 Test 023 control_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/control_p8_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39282/control_p8_lndp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/control_p8_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1131/control_p8_lndp Checking test 024 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -882,14 +867,14 @@ Checking test 024 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -The total amount of wall time = 327.340992 -The maximum resident set size (KB) = 1493268 +The total amount of wall time = 322.231811 +The maximum resident set size (KB) = 1482176 Test 024 control_p8_lndp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39282/control_restart_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1131/control_restart_p8 Checking test 025 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -928,14 +913,14 @@ Checking test 025 control_restart_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 103.570739 -The maximum resident set size (KB) = 643612 +The total amount of wall time = 97.709424 +The maximum resident set size (KB) = 647596 Test 025 control_restart_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39282/control_decomp_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1131/control_decomp_p8 Checking test 026 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -978,14 +963,14 @@ Checking test 026 control_decomp_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 178.834586 -The maximum resident set size (KB) = 1474360 +The total amount of wall time = 179.461861 +The maximum resident set size (KB) = 1483448 Test 026 control_decomp_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39282/control_2threads_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1131/control_2threads_p8 Checking test 027 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1028,68 +1013,16 @@ Checking test 027 control_2threads_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 486.805128 -The maximum resident set size (KB) = 1561120 +The total amount of wall time = 490.057920 +The maximum resident set size (KB) = 1568624 Test 027 control_2threads_p8 PASS +Test 028 control_p8_rrtmgp FAIL -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/control_p8_rrtmgp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39282/control_p8_rrtmgp -Checking test 028 control_p8_rrtmgp results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -The total amount of wall time = 261.972818 -The maximum resident set size (KB) = 1604088 - -Test 028 control_p8_rrtmgp PASS - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/merra2_thompson -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39282/merra2_thompson +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/merra2_thompson +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1131/merra2_thompson Checking test 029 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1136,14 +1069,14 @@ Checking test 029 merra2_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 187.391825 -The maximum resident set size (KB) = 1489432 +The total amount of wall time = 182.494639 +The maximum resident set size (KB) = 1498876 Test 029 merra2_thompson PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/fv3_regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39282/regional_control +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/fv3_regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1131/regional_control Checking test 030 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1154,28 +1087,28 @@ Checking test 030 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -The total amount of wall time = 309.949331 -The maximum resident set size (KB) = 600136 +The total amount of wall time = 313.078093 +The maximum resident set size (KB) = 602828 Test 030 regional_control PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/fv3_regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39282/regional_restart +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/fv3_regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1131/regional_restart Checking test 031 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 = 174.902219 -The maximum resident set size (KB) = 595548 +The total amount of wall time = 172.048615 +The maximum resident set size (KB) = 596812 Test 031 regional_restart PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/fv3_regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39282/regional_control_2dwrtdecomp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/fv3_regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1131/regional_control_2dwrtdecomp Checking test 032 regional_control_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1186,14 +1119,14 @@ Checking test 032 regional_control_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -The total amount of wall time = 313.008757 -The maximum resident set size (KB) = 598156 +The total amount of wall time = 308.932159 +The maximum resident set size (KB) = 602788 Test 032 regional_control_2dwrtdecomp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/fv3_regional_noquilt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39282/regional_noquilt +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/fv3_regional_noquilt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1131/regional_noquilt Checking test 033 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1201,14 +1134,14 @@ Checking test 033 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 = 329.726050 -The maximum resident set size (KB) = 593072 +The total amount of wall time = 324.766327 +The maximum resident set size (KB) = 588728 Test 033 regional_noquilt PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/fv3_regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39282/regional_2threads +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/fv3_regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1131/regional_2threads Checking test 034 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1219,28 +1152,28 @@ Checking test 034 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -The total amount of wall time = 618.270482 -The maximum resident set size (KB) = 649276 +The total amount of wall time = 634.321145 +The maximum resident set size (KB) = 647560 Test 034 regional_2threads PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/fv3_regional_netcdf_parallel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39282/regional_netcdf_parallel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/fv3_regional_netcdf_parallel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1131/regional_netcdf_parallel Checking test 035 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 = 309.543462 -The maximum resident set size (KB) = 597400 +The total amount of wall time = 306.156797 +The maximum resident set size (KB) = 596084 Test 035 regional_netcdf_parallel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/fv3_regional_3km -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39282/regional_3km +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/fv3_regional_3km +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1131/regional_3km Checking test 036 regional_3km results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1251,14 +1184,14 @@ Checking test 036 regional_3km results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 259.484652 -The maximum resident set size (KB) = 644012 +The total amount of wall time = 253.881884 +The maximum resident set size (KB) = 647936 Test 036 regional_3km PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/fv3_regional_3km -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39282/regional_3km_decomp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/fv3_regional_3km +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1131/regional_3km_decomp Checking test 037 regional_3km_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1269,14 +1202,14 @@ Checking test 037 regional_3km_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 274.834055 -The maximum resident set size (KB) = 656120 +The total amount of wall time = 269.464831 +The maximum resident set size (KB) = 659556 Test 037 regional_3km_decomp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39282/rap_control +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1131/rap_control Checking test 038 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1323,14 +1256,14 @@ Checking test 038 rap_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 396.221897 -The maximum resident set size (KB) = 894580 +The total amount of wall time = 408.232861 +The maximum resident set size (KB) = 897404 Test 038 rap_control PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_rrtmgp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39282/rap_rrtmgp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_rrtmgp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1131/rap_rrtmgp Checking test 039 rap_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1377,14 +1310,14 @@ Checking test 039 rap_rrtmgp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 481.301902 -The maximum resident set size (KB) = 1009848 +The total amount of wall time = 488.130796 +The maximum resident set size (KB) = 1007096 Test 039 rap_rrtmgp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/regional_spp_sppt_shum_skeb -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39282/regional_spp_sppt_shum_skeb +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/regional_spp_sppt_shum_skeb +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1131/regional_spp_sppt_shum_skeb Checking test 040 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -1395,14 +1328,14 @@ Checking test 040 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 729.776764 -The maximum resident set size (KB) = 977968 +The total amount of wall time = 729.223737 +The maximum resident set size (KB) = 976388 Test 040 regional_spp_sppt_shum_skeb PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39282/rap_decomp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1131/rap_decomp Checking test 041 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1449,14 +1382,14 @@ Checking test 041 rap_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 418.007709 -The maximum resident set size (KB) = 890932 +The total amount of wall time = 427.632675 +The maximum resident set size (KB) = 890676 Test 041 rap_decomp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39282/rap_2threads +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1131/rap_2threads Checking test 042 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1503,14 +1436,14 @@ Checking test 042 rap_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 1249.167638 -The maximum resident set size (KB) = 954112 +The total amount of wall time = 1284.242672 +The maximum resident set size (KB) = 955444 Test 042 rap_2threads PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39282/rap_restart +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1131/rap_restart Checking test 043 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1549,14 +1482,14 @@ Checking test 043 rap_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 203.364041 -The maximum resident set size (KB) = 638780 +The total amount of wall time = 209.382061 +The maximum resident set size (KB) = 637572 Test 043 rap_restart PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39282/rap_sfcdiff +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1131/rap_sfcdiff Checking test 044 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1603,14 +1536,14 @@ Checking test 044 rap_sfcdiff results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 402.311957 -The maximum resident set size (KB) = 894400 +The total amount of wall time = 415.778104 +The maximum resident set size (KB) = 897768 Test 044 rap_sfcdiff PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39282/rap_sfcdiff_decomp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1131/rap_sfcdiff_decomp Checking test 045 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1657,14 +1590,14 @@ Checking test 045 rap_sfcdiff_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 421.210857 -The maximum resident set size (KB) = 890392 +The total amount of wall time = 438.566790 +The maximum resident set size (KB) = 891976 Test 045 rap_sfcdiff_decomp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39282/rap_sfcdiff_restart +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1131/rap_sfcdiff_restart Checking test 046 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -1703,14 +1636,14 @@ Checking test 046 rap_sfcdiff_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 295.879397 -The maximum resident set size (KB) = 639200 +The total amount of wall time = 293.278256 +The maximum resident set size (KB) = 639600 Test 046 rap_sfcdiff_restart PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39282/hrrr_control +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1131/hrrr_control Checking test 047 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1757,14 +1690,14 @@ Checking test 047 hrrr_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 385.546649 -The maximum resident set size (KB) = 890420 +The total amount of wall time = 398.915923 +The maximum resident set size (KB) = 890024 Test 047 hrrr_control PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39282/hrrr_control_decomp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1131/hrrr_control_decomp Checking test 048 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1811,14 +1744,14 @@ Checking test 048 hrrr_control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 402.149107 -The maximum resident set size (KB) = 890464 +The total amount of wall time = 411.003803 +The maximum resident set size (KB) = 891244 Test 048 hrrr_control_decomp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39282/hrrr_control_2threads +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1131/hrrr_control_2threads Checking test 049 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1865,14 +1798,14 @@ Checking test 049 hrrr_control_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 1204.878074 -The maximum resident set size (KB) = 948280 +The total amount of wall time = 1201.937834 +The maximum resident set size (KB) = 951960 Test 049 hrrr_control_2threads PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39282/hrrr_control_restart +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1131/hrrr_control_restart Checking test 050 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -1911,14 +1844,14 @@ Checking test 050 hrrr_control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 286.741735 -The maximum resident set size (KB) = 630932 +The total amount of wall time = 287.540923 +The maximum resident set size (KB) = 632996 Test 050 hrrr_control_restart PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/rrfs_v1beta -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39282/rrfs_v1beta +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/rrfs_v1beta +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1131/rrfs_v1beta Checking test 051 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1965,14 +1898,14 @@ Checking test 051 rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 396.086672 -The maximum resident set size (KB) = 886300 +The total amount of wall time = 395.222118 +The maximum resident set size (KB) = 885052 Test 051 rrfs_v1beta PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/rrfs_v1nssl -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39282/rrfs_v1nssl +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/rrfs_v1nssl +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1131/rrfs_v1nssl Checking test 052 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1987,14 +1920,14 @@ Checking test 052 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 460.970654 -The maximum resident set size (KB) = 576508 +The total amount of wall time = 474.196955 +The maximum resident set size (KB) = 577696 Test 052 rrfs_v1nssl PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39282/rrfs_v1nssl_nohailnoccn +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1131/rrfs_v1nssl_nohailnoccn Checking test 053 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2009,14 +1942,14 @@ Checking test 053 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 448.830197 -The maximum resident set size (KB) = 567408 +The total amount of wall time = 463.744043 +The maximum resident set size (KB) = 567824 Test 053 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39282/rrfs_conus13km_hrrr_warm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/rrfs_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1131/rrfs_conus13km_hrrr_warm Checking test 054 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2025,14 +1958,14 @@ Checking test 054 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 117.101697 -The maximum resident set size (KB) = 764020 +The total amount of wall time = 118.447413 +The maximum resident set size (KB) = 764848 Test 054 rrfs_conus13km_hrrr_warm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39282/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1131/rrfs_smoke_conus13km_hrrr_warm Checking test 055 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2041,14 +1974,14 @@ Checking test 055 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 128.624714 -The maximum resident set size (KB) = 779344 +The total amount of wall time = 130.927198 +The maximum resident set size (KB) = 776676 Test 055 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39282/rrfs_conus13km_radar_tten_warm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1131/rrfs_conus13km_radar_tten_warm Checking test 056 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2057,14 +1990,14 @@ Checking test 056 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 118.092009 -The maximum resident set size (KB) = 774236 +The total amount of wall time = 117.543889 +The maximum resident set size (KB) = 768140 Test 056 rrfs_conus13km_radar_tten_warm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39282/rrfs_conus13km_hrrr_warm_2threads +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/rrfs_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1131/rrfs_conus13km_hrrr_warm_2threads Checking test 057 rrfs_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2073,14 +2006,14 @@ Checking test 057 rrfs_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 218.106119 -The maximum resident set size (KB) = 754024 +The total amount of wall time = 224.107089 +The maximum resident set size (KB) = 755116 Test 057 rrfs_conus13km_hrrr_warm_2threads PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39282/rrfs_conus13km_radar_tten_warm_2threads +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1131/rrfs_conus13km_radar_tten_warm_2threads Checking test 058 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2089,14 +2022,14 @@ Checking test 058 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 225.215009 -The maximum resident set size (KB) = 763744 +The total amount of wall time = 234.425893 +The maximum resident set size (KB) = 762524 Test 058 rrfs_conus13km_radar_tten_warm_2threads PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/control_csawmg -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39282/control_csawmg +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/control_csawmg +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1131/control_csawmg Checking test 059 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2107,14 +2040,14 @@ Checking test 059 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 347.383400 -The maximum resident set size (KB) = 588568 +The total amount of wall time = 363.385488 +The maximum resident set size (KB) = 587004 Test 059 control_csawmg PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/control_csawmgt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39282/control_csawmgt +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/control_csawmgt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1131/control_csawmgt Checking test 060 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2125,14 +2058,14 @@ Checking test 060 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 349.862659 -The maximum resident set size (KB) = 588876 +The total amount of wall time = 356.670067 +The maximum resident set size (KB) = 586728 Test 060 control_csawmgt PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/control_ras -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39282/control_ras +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/control_ras +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1131/control_ras Checking test 061 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2143,82 +2076,82 @@ Checking test 061 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 179.833810 -The maximum resident set size (KB) = 552280 +The total amount of wall time = 182.019209 +The maximum resident set size (KB) = 555452 Test 061 control_ras PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/control_wam -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39282/control_wam +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/control_wam +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1131/control_wam Checking test 062 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 114.887903 -The maximum resident set size (KB) = 271032 +The total amount of wall time = 122.921405 +The maximum resident set size (KB) = 269156 Test 062 control_wam PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39282/rrfs_conus13km_hrrr_warm_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1131/rrfs_conus13km_hrrr_warm_debug Checking test 063 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 777.258813 -The maximum resident set size (KB) = 787856 +The total amount of wall time = 774.697657 +The maximum resident set size (KB) = 793856 Test 063 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/rrfs_conus13km_radar_tten_warm_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39282/rrfs_conus13km_radar_tten_warm_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/rrfs_conus13km_radar_tten_warm_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1131/rrfs_conus13km_radar_tten_warm_debug Checking test 064 rrfs_conus13km_radar_tten_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 776.439158 -The maximum resident set size (KB) = 790968 +The total amount of wall time = 774.870806 +The maximum resident set size (KB) = 790272 Test 064 rrfs_conus13km_radar_tten_warm_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39282/control_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1131/control_debug Checking test 065 control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 155.683036 -The maximum resident set size (KB) = 677428 +The total amount of wall time = 159.287005 +The maximum resident set size (KB) = 678388 Test 065 control_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39282/control_2threads_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1131/control_2threads_debug Checking test 066 control_2threads_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 448.831248 -The maximum resident set size (KB) = 726180 +The total amount of wall time = 449.075243 +The maximum resident set size (KB) = 730620 Test 066 control_2threads_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/control_CubedSphereGrid_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39282/control_CubedSphereGrid_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/control_CubedSphereGrid_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1131/control_CubedSphereGrid_debug Checking test 067 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2245,348 +2178,348 @@ Checking test 067 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 156.925190 -The maximum resident set size (KB) = 675480 +The total amount of wall time = 160.371646 +The maximum resident set size (KB) = 675744 Test 067 control_CubedSphereGrid_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39282/control_wrtGauss_netcdf_parallel_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1131/control_wrtGauss_netcdf_parallel_debug Checking test 068 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 161.790843 -The maximum resident set size (KB) = 676996 +The total amount of wall time = 163.899856 +The maximum resident set size (KB) = 678908 Test 068 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/control_stochy_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39282/control_stochy_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/control_stochy_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1131/control_stochy_debug Checking test 069 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 178.132065 -The maximum resident set size (KB) = 680448 +The total amount of wall time = 181.023137 +The maximum resident set size (KB) = 682956 Test 069 control_stochy_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/control_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39282/control_lndp_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/control_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1131/control_lndp_debug Checking test 070 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 161.438363 -The maximum resident set size (KB) = 683172 +The total amount of wall time = 164.245638 +The maximum resident set size (KB) = 680808 Test 070 control_lndp_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/control_csawmg_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39282/control_csawmg_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/control_csawmg_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1131/control_csawmg_debug Checking test 071 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 254.432578 -The maximum resident set size (KB) = 715388 +The total amount of wall time = 263.162542 +The maximum resident set size (KB) = 714960 Test 071 control_csawmg_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/control_csawmgt_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39282/control_csawmgt_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/control_csawmgt_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1131/control_csawmgt_debug Checking test 072 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 257.972295 -The maximum resident set size (KB) = 718472 +The total amount of wall time = 251.612417 +The maximum resident set size (KB) = 717940 Test 072 control_csawmgt_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/control_ras_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39282/control_ras_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/control_ras_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1131/control_ras_debug Checking test 073 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 170.143707 -The maximum resident set size (KB) = 689348 +The total amount of wall time = 160.453222 +The maximum resident set size (KB) = 690260 Test 073 control_ras_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/control_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39282/control_diag_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/control_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1131/control_diag_debug Checking test 074 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 161.243670 -The maximum resident set size (KB) = 736224 +The total amount of wall time = 161.819161 +The maximum resident set size (KB) = 733488 Test 074 control_diag_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/control_debug_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39282/control_debug_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/control_debug_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1131/control_debug_p8 Checking test 075 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 189.933622 -The maximum resident set size (KB) = 1499200 +The total amount of wall time = 196.129434 +The maximum resident set size (KB) = 1498880 Test 075 control_debug_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/fv3_regional_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39282/regional_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/fv3_regional_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1131/regional_debug Checking test 076 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -The total amount of wall time = 257.208786 -The maximum resident set size (KB) = 621920 +The total amount of wall time = 259.114361 +The maximum resident set size (KB) = 623464 Test 076 regional_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39282/rap_control_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1131/rap_control_debug Checking test 077 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 297.631734 -The maximum resident set size (KB) = 1046820 +The total amount of wall time = 293.624859 +The maximum resident set size (KB) = 1052788 Test 077 rap_control_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/hrrr_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39282/hrrr_control_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/hrrr_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1131/hrrr_control_debug Checking test 078 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 290.519349 -The maximum resident set size (KB) = 1048336 +The total amount of wall time = 291.301057 +The maximum resident set size (KB) = 1048408 Test 078 hrrr_control_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39282/rap_unified_drag_suite_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1131/rap_unified_drag_suite_debug Checking test 079 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 297.468775 -The maximum resident set size (KB) = 1052560 +The total amount of wall time = 296.041043 +The maximum resident set size (KB) = 1053472 Test 079 rap_unified_drag_suite_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39282/rap_diag_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1131/rap_diag_debug Checking test 080 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 304.325953 -The maximum resident set size (KB) = 1133552 +The total amount of wall time = 307.858793 +The maximum resident set size (KB) = 1136196 Test 080 rap_diag_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39282/rap_cires_ugwp_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1131/rap_cires_ugwp_debug Checking test 081 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 302.130829 -The maximum resident set size (KB) = 1048480 +The total amount of wall time = 301.166839 +The maximum resident set size (KB) = 1049144 Test 081 rap_cires_ugwp_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39282/rap_unified_ugwp_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1131/rap_unified_ugwp_debug Checking test 082 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 302.283309 -The maximum resident set size (KB) = 1051220 +The total amount of wall time = 303.092170 +The maximum resident set size (KB) = 1046932 Test 082 rap_unified_ugwp_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39282/rap_lndp_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1131/rap_lndp_debug Checking test 083 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 297.551541 -The maximum resident set size (KB) = 1050584 +The total amount of wall time = 303.032097 +The maximum resident set size (KB) = 1054852 Test 083 rap_lndp_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_flake_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39282/rap_flake_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_flake_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1131/rap_flake_debug Checking test 084 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 294.707543 -The maximum resident set size (KB) = 1051484 +The total amount of wall time = 294.525244 +The maximum resident set size (KB) = 1052304 Test 084 rap_flake_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_progcld_thompson_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39282/rap_progcld_thompson_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_progcld_thompson_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1131/rap_progcld_thompson_debug Checking test 085 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 297.659661 -The maximum resident set size (KB) = 1048384 +The total amount of wall time = 294.282632 +The maximum resident set size (KB) = 1052812 Test 085 rap_progcld_thompson_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_noah_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39282/rap_noah_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_noah_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1131/rap_noah_debug Checking test 086 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 292.003208 -The maximum resident set size (KB) = 1046928 +The total amount of wall time = 291.055616 +The maximum resident set size (KB) = 1050592 Test 086 rap_noah_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_rrtmgp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39282/rap_rrtmgp_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_rrtmgp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1131/rap_rrtmgp_debug Checking test 087 rap_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 497.076270 -The maximum resident set size (KB) = 1171204 +The total amount of wall time = 494.634816 +The maximum resident set size (KB) = 1168612 Test 087 rap_rrtmgp_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_sfcdiff_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39282/rap_sfcdiff_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_sfcdiff_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1131/rap_sfcdiff_debug Checking test 088 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 297.153995 -The maximum resident set size (KB) = 1051220 +The total amount of wall time = 296.616378 +The maximum resident set size (KB) = 1054100 Test 088 rap_sfcdiff_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39282/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1131/rap_noah_sfcdiff_cires_ugwp_debug Checking test 089 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 484.096383 -The maximum resident set size (KB) = 1045636 +The total amount of wall time = 481.397017 +The maximum resident set size (KB) = 1046560 Test 089 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/rrfs_v1beta_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39282/rrfs_v1beta_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/rrfs_v1beta_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1131/rrfs_v1beta_debug Checking test 090 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 290.017147 -The maximum resident set size (KB) = 1047860 +The total amount of wall time = 289.701170 +The maximum resident set size (KB) = 1043684 Test 090 rrfs_v1beta_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/control_wam_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39282/control_wam_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/control_wam_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1131/control_wam_debug Checking test 091 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -The total amount of wall time = 300.501074 -The maximum resident set size (KB) = 294828 +The total amount of wall time = 297.855561 +The maximum resident set size (KB) = 295128 Test 091 control_wam_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39282/regional_spp_sppt_shum_skeb_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1131/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 092 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2597,14 +2530,14 @@ Checking test 092 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 660.300700 -The maximum resident set size (KB) = 874660 +The total amount of wall time = 658.252396 +The maximum resident set size (KB) = 877576 Test 092 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39282/rap_control_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1131/rap_control_dyn32_phy32 Checking test 093 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2651,14 +2584,14 @@ Checking test 093 rap_control_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 329.021933 -The maximum resident set size (KB) = 774780 +The total amount of wall time = 328.729836 +The maximum resident set size (KB) = 774580 Test 093 rap_control_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39282/hrrr_control_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1131/hrrr_control_dyn32_phy32 Checking test 094 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2705,14 +2638,14 @@ Checking test 094 hrrr_control_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 175.971598 -The maximum resident set size (KB) = 773404 +The total amount of wall time = 173.788210 +The maximum resident set size (KB) = 770740 Test 094 hrrr_control_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39282/rap_2threads_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1131/rap_2threads_dyn32_phy32 Checking test 095 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2759,14 +2692,14 @@ Checking test 095 rap_2threads_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 1030.935213 -The maximum resident set size (KB) = 816720 +The total amount of wall time = 1054.372720 +The maximum resident set size (KB) = 816016 Test 095 rap_2threads_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39282/hrrr_control_2threads_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1131/hrrr_control_2threads_dyn32_phy32 Checking test 096 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2813,14 +2746,14 @@ Checking test 096 hrrr_control_2threads_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 525.677207 -The maximum resident set size (KB) = 813364 +The total amount of wall time = 524.290450 +The maximum resident set size (KB) = 812100 Test 096 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39282/hrrr_control_decomp_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1131/hrrr_control_decomp_dyn32_phy32 Checking test 097 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2867,14 +2800,14 @@ Checking test 097 hrrr_control_decomp_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 180.931436 -The maximum resident set size (KB) = 772984 +The total amount of wall time = 181.844083 +The maximum resident set size (KB) = 774328 Test 097 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39282/rap_restart_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1131/rap_restart_dyn32_phy32 Checking test 098 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2913,14 +2846,14 @@ Checking test 098 rap_restart_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 245.404443 -The maximum resident set size (KB) = 604640 +The total amount of wall time = 245.151690 +The maximum resident set size (KB) = 606324 Test 098 rap_restart_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39282/hrrr_control_restart_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1131/hrrr_control_restart_dyn32_phy32 Checking test 099 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2959,14 +2892,14 @@ Checking test 099 hrrr_control_restart_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 88.228463 -The maximum resident set size (KB) = 601588 +The total amount of wall time = 90.194372 +The maximum resident set size (KB) = 604216 Test 099 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_control_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39282/rap_control_dyn64_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_control_dyn64_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1131/rap_control_dyn64_phy32 Checking test 100 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3013,81 +2946,81 @@ Checking test 100 rap_control_dyn64_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 224.565137 -The maximum resident set size (KB) = 794604 +The total amount of wall time = 223.669277 +The maximum resident set size (KB) = 797360 Test 100 rap_control_dyn64_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39282/rap_control_debug_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1131/rap_control_debug_dyn32_phy32 Checking test 101 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 295.591772 -The maximum resident set size (KB) = 937560 +The total amount of wall time = 286.560211 +The maximum resident set size (KB) = 940324 Test 101 rap_control_debug_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39282/hrrr_control_debug_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1131/hrrr_control_debug_dyn32_phy32 Checking test 102 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 282.925679 -The maximum resident set size (KB) = 937872 +The total amount of wall time = 281.672478 +The maximum resident set size (KB) = 935004 Test 102 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39282/rap_control_dyn64_phy32_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/rap_control_debug_dyn64_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1131/rap_control_dyn64_phy32_debug Checking test 103 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 290.607005 -The maximum resident set size (KB) = 960428 +The total amount of wall time = 289.434443 +The maximum resident set size (KB) = 954548 Test 103 rap_control_dyn64_phy32_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/hafs_regional_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39282/hafs_regional_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/hafs_regional_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1131/hafs_regional_atm Checking test 104 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -The total amount of wall time = 704.840770 -The maximum resident set size (KB) = 779916 +The total amount of wall time = 706.464671 +The maximum resident set size (KB) = 780492 Test 104 hafs_regional_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39282/hafs_regional_atm_thompson_gfdlsf +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1131/hafs_regional_atm_thompson_gfdlsf Checking test 105 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 838.901936 -The maximum resident set size (KB) = 1143484 +The total amount of wall time = 812.484568 +The maximum resident set size (KB) = 1147340 Test 105 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/hafs_regional_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39282/hafs_regional_atm_ocn +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/hafs_regional_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1131/hafs_regional_atm_ocn Checking test 106 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3096,14 +3029,14 @@ Checking test 106 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 437.255286 -The maximum resident set size (KB) = 834820 +The total amount of wall time = 433.741051 +The maximum resident set size (KB) = 837504 Test 106 hafs_regional_atm_ocn PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/hafs_regional_atm_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39282/hafs_regional_atm_wav +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/hafs_regional_atm_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1131/hafs_regional_atm_wav Checking test 107 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3112,14 +3045,14 @@ Checking test 107 hafs_regional_atm_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 706.590987 -The maximum resident set size (KB) = 865300 +The total amount of wall time = 700.852535 +The maximum resident set size (KB) = 867340 Test 107 hafs_regional_atm_wav PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/hafs_regional_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39282/hafs_regional_atm_ocn_wav +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/hafs_regional_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1131/hafs_regional_atm_ocn_wav Checking test 108 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3130,28 +3063,28 @@ Checking test 108 hafs_regional_atm_ocn_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 895.904730 -The maximum resident set size (KB) = 888764 +The total amount of wall time = 848.174215 +The maximum resident set size (KB) = 891836 Test 108 hafs_regional_atm_ocn_wav PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/hafs_regional_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39282/hafs_regional_1nest_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/hafs_regional_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1131/hafs_regional_1nest_atm Checking test 109 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 1122.921036 -The maximum resident set size (KB) = 383308 +The total amount of wall time = 1108.322825 +The maximum resident set size (KB) = 377632 Test 109 hafs_regional_1nest_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39282/hafs_regional_telescopic_2nests_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1131/hafs_regional_telescopic_2nests_atm Checking test 110 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3160,28 +3093,28 @@ Checking test 110 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -The total amount of wall time = 1265.236800 -The maximum resident set size (KB) = 387336 +The total amount of wall time = 1263.247873 +The maximum resident set size (KB) = 385636 Test 110 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/hafs_global_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39282/hafs_global_1nest_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/hafs_global_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1131/hafs_global_1nest_atm Checking test 111 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 534.689609 -The maximum resident set size (KB) = 247824 +The total amount of wall time = 534.137959 +The maximum resident set size (KB) = 337920 Test 111 hafs_global_1nest_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/hafs_global_multiple_4nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39282/hafs_global_multiple_4nests_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/hafs_global_multiple_4nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1131/hafs_global_multiple_4nests_atm Checking test 112 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3199,14 +3132,14 @@ Checking test 112 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK -The total amount of wall time = 1421.640571 -The maximum resident set size (KB) = 329252 +The total amount of wall time = 1422.786714 +The maximum resident set size (KB) = 312876 Test 112 hafs_global_multiple_4nests_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39282/hafs_regional_specified_moving_1nest_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1131/hafs_regional_specified_moving_1nest_atm Checking test 113 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3215,28 +3148,28 @@ Checking test 113 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -The total amount of wall time = 661.446178 -The maximum resident set size (KB) = 381932 +The total amount of wall time = 665.419653 +The maximum resident set size (KB) = 382308 Test 113 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39282/hafs_regional_storm_following_1nest_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1131/hafs_regional_storm_following_1nest_atm Checking test 114 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 637.081255 -The maximum resident set size (KB) = 382416 +The total amount of wall time = 638.326517 +The maximum resident set size (KB) = 382272 Test 114 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39282/hafs_regional_storm_following_1nest_atm_ocn +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1131/hafs_regional_storm_following_1nest_atm_ocn Checking test 115 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3245,14 +3178,14 @@ Checking test 115 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -The total amount of wall time = 670.498042 -The maximum resident set size (KB) = 412220 +The total amount of wall time = 668.855187 +The maximum resident set size (KB) = 413936 Test 115 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39282/hafs_regional_storm_following_1nest_atm_ocn_wav +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1131/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 116 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3263,29 +3196,121 @@ Checking test 116 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK -The total amount of wall time = 1319.404393 -The maximum resident set size (KB) = 473020 +The total amount of wall time = 1321.214920 +The maximum resident set size (KB) = 478308 Test 116 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/hafs_global_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39282/hafs_global_storm_following_1nest_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/hafs_global_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1131/hafs_global_storm_following_1nest_atm Checking test 117 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 210.544558 -The maximum resident set size (KB) = 269140 +The total amount of wall time = 211.646734 +The maximum resident set size (KB) = 261668 Test 117 hafs_global_storm_following_1nest_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221024/INTEL/regional_atmaq -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39282/regional_atmaq -Checking test 118 regional_atmaq results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/control_p8_atmlnd_sbs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1131/control_p8_atmlnd_sbs +Checking test 118 control_p8_atmlnd_sbs results .... + Comparing sfcf000.tile1.nc .........OK + Comparing sfcf000.tile2.nc .........OK + Comparing sfcf000.tile3.nc .........OK + Comparing sfcf000.tile4.nc .........OK + Comparing sfcf000.tile5.nc .........OK + Comparing sfcf000.tile6.nc .........OK + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf000.tile1.nc .........OK + Comparing atmf000.tile2.nc .........OK + Comparing atmf000.tile3.nc .........OK + Comparing atmf000.tile4.nc .........OK + Comparing atmf000.tile5.nc .........OK + Comparing atmf000.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing ufs.cpld.cpl.hi.lnd.2021-03-22-43200.nc .........OK + Comparing ufs.cpld.cpl.hi.lnd.2021-03-23-21600.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile1.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile2.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile3.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile4.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile5.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile6.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile1.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile2.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile3.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile4.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK + +The total amount of wall time = 239.682324 +The maximum resident set size (KB) = 1541928 + +Test 118 control_p8_atmlnd_sbs PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/regional_atmaq +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1131/regional_atmaq +Checking test 119 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing sfcf006.nc .........OK @@ -3300,12 +3325,95 @@ Checking test 118 regional_atmaq results .... Comparing RESTART/phy_data.nc .........OK Comparing RESTART/sfc_data.nc .........OK -The total amount of wall time = 735.294219 -The maximum resident set size (KB) = 1039812 +The total amount of wall time = 699.926239 +The maximum resident set size (KB) = 1040676 + +Test 119 regional_atmaq PASS + +FAILED TESTS: +Test control_c384_progsigma 017 failed in run_test failed +Test control_p8_rrtmgp 028 failed in run_test failed + +REGRESSION TEST FAILED +Thu Oct 27 23:26:05 UTC 2022 +Elapsed time: 08h:38m:51s. Have a nice day! +Thu Oct 27 23:30:31 UTC 2022 +Start Regression test + +Compile 001 elapsed time 323 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/control_c384_progsigma +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_144990/control_c384_progsigma +Checking test 001 control_c384_progsigma results .... + Comparing sfcf000.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF12 .........OK + +The total amount of wall time = 1679.092697 +The maximum resident set size (KB) = 900548 + +Test 001 control_c384_progsigma PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20221026/INTEL/control_p8_rrtmgp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_144990/control_p8_rrtmgp +Checking test 002 control_p8_rrtmgp results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 256.329449 +The maximum resident set size (KB) = 1599496 -Test 118 regional_atmaq PASS +Test 002 control_p8_rrtmgp PASS REGRESSION TEST WAS SUCCESSFUL -Tue Oct 25 15:52:39 UTC 2022 -Elapsed time: 01h:03m:03s. Have a nice day! +Fri Oct 28 00:10:32 UTC 2022 +Elapsed time: 00h:40m:01s. Have a nice day! diff --git a/tests/default_vars.sh b/tests/default_vars.sh index 795cfed7ab..4716066bd7 100755 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -456,6 +456,7 @@ export CPLFLX=.false. export CPLICE=.false. export CPLWAV=.false. export CPLWAV2ATM=.false. +export CPLLND=.false. export USE_MED_FLUX=.false. export DAYS=1 export NPX=97 @@ -765,6 +766,7 @@ export CPLWAV=.true. export CPLWAV2ATM=.true. export USE_MED_FLUX=.false. export CPLCHM=.true. +export CPLLND=.false. # for FV3: default values will be changed if doing a warm-warm restart export WARM_START=.false. diff --git a/tests/fv3_conf/control_run.IN b/tests/fv3_conf/control_run.IN index 805e052b92..2eb2430dac 100644 --- a/tests/fv3_conf/control_run.IN +++ b/tests/fv3_conf/control_run.IN @@ -74,7 +74,11 @@ else fi if [ $TILEDFIX = .true. ]; then - cp @[INPUTDATA_ROOT]/FV3_fix_tiled/@[ATMRES]/@[ATMRES]*.nc . + if [ $CPLLND == .true. ]; then + cp @[INPUTDATA_ROOT]/FV3_fix_tiled/@[ATMRES]/@[ATMRES]*.nc INPUT/. + else + cp @[INPUTDATA_ROOT]/FV3_fix_tiled/@[ATMRES]/@[ATMRES]*.nc . + fi cp @[INPUTDATA_ROOT]/FV3_fix/global_glacier.2x2.grb . cp @[INPUTDATA_ROOT]/FV3_fix/global_maxice.2x2.grb . cp @[INPUTDATA_ROOT]/FV3_fix/RTGSST.1982.2012.monthly.clim.grb . diff --git a/tests/fv3_conf/lnd_datm_cdeps_gswp.IN b/tests/fv3_conf/lnd_datm_cdeps_gswp.IN new file mode 100644 index 0000000000..02dc5592dc --- /dev/null +++ b/tests/fv3_conf/lnd_datm_cdeps_gswp.IN @@ -0,0 +1,22 @@ +mkdir -p RESTART INPUT_DATM + +cd INPUT_DATM +rsync -arv @[INPUTDATA_ROOT]/DATM_GSWP3_input_data/. . +cd - + +SUFFIX=${RT_SUFFIX} +# restart +if [ $WARM_START = .true. ]; then + # NoahMP restart files + cp ../${DEP_RUN}${SUFFIX}/ufs.cpld.lnd.out.${RESTART_FILE_SUFFIX_SECS}.tile*.nc RESTART/. + + # CMEPS restart and pointer files + RFILE1=ufs.cpld.cpl.r.${RESTART_FILE_SUFFIX_SECS}.nc + cp ../${DEP_RUN}${SUFFIX}/RESTART/${RFILE1} RESTART/. + ls -1 "RESTART/${RFILE1}">rpointer.cpl + + # CDEPS restart and pointer files + RFILE2=ufs.cpld.datm.r.${RESTART_FILE_SUFFIX_SECS}.nc + cp ../${DEP_RUN}${SUFFIX}/${RFILE2} RESTART/. + ls -1 "RESTART/${RFILE2}">rpointer.atm +fi diff --git a/tests/fv3_conf/noahmp_run.IN b/tests/fv3_conf/noahmp_run.IN new file mode 100644 index 0000000000..00efc6e370 --- /dev/null +++ b/tests/fv3_conf/noahmp_run.IN @@ -0,0 +1,25 @@ +mkdir -p INPUT RESTART + +cd INPUT +rsync -arv @[INPUTDATA_ROOT]/NOAHMP_IC/ufs-land_C96_init_fields.tile1.nc C96.initial.tile1.nc +rsync -arv @[INPUTDATA_ROOT]/NOAHMP_IC/ufs-land_C96_init_fields.tile2.nc C96.initial.tile2.nc +rsync -arv @[INPUTDATA_ROOT]/NOAHMP_IC/ufs-land_C96_init_fields.tile3.nc C96.initial.tile3.nc +rsync -arv @[INPUTDATA_ROOT]/NOAHMP_IC/ufs-land_C96_init_fields.tile4.nc C96.initial.tile4.nc +rsync -arv @[INPUTDATA_ROOT]/NOAHMP_IC/ufs-land_C96_init_fields.tile5.nc C96.initial.tile5.nc +rsync -arv @[INPUTDATA_ROOT]/NOAHMP_IC/ufs-land_C96_init_fields.tile6.nc C96.initial.tile6.nc + +rsync -arv @[INPUTDATA_ROOT]/FV3_fix_tiled/C96/C96.maximum_snow_albedo.tile*.nc . +rsync -arv @[INPUTDATA_ROOT]/FV3_fix_tiled/C96/C96.slope_type.tile*.nc . +rsync -arv @[INPUTDATA_ROOT]/FV3_fix_tiled/C96/C96.soil_type.tile*.nc . +rsync -arv @[INPUTDATA_ROOT]/FV3_fix_tiled/C96/C96.substrate_temperature.tile*.nc . +rsync -arv @[INPUTDATA_ROOT]/FV3_fix_tiled/C96/C96.vegetation_greenness.tile*.nc . +rsync -arv @[INPUTDATA_ROOT]/FV3_fix_tiled/C96/C96.vegetation_type.tile*.nc . +rsync -arv @[INPUTDATA_ROOT]/FV3_fix_tiled/C96/oro_C96.mx100.tile1.nc oro_data.tile1.nc +rsync -arv @[INPUTDATA_ROOT]/FV3_fix_tiled/C96/oro_C96.mx100.tile2.nc oro_data.tile2.nc +rsync -arv @[INPUTDATA_ROOT]/FV3_fix_tiled/C96/oro_C96.mx100.tile3.nc oro_data.tile3.nc +rsync -arv @[INPUTDATA_ROOT]/FV3_fix_tiled/C96/oro_C96.mx100.tile4.nc oro_data.tile4.nc +rsync -arv @[INPUTDATA_ROOT]/FV3_fix_tiled/C96/oro_C96.mx100.tile5.nc oro_data.tile5.nc +rsync -arv @[INPUTDATA_ROOT]/FV3_fix_tiled/C96/oro_C96.mx100.tile6.nc oro_data.tile6.nc +rsync -arv @[INPUTDATA_ROOT]/FV3_input_data/INPUT/C96_grid.tile*.nc . +rsync -arv @[INPUTDATA_ROOT]/FV3_input_data/INPUT/grid_spec.nc C96_mosaic.nc +cd - diff --git a/tests/parm/cpld_control.nml.IN b/tests/parm/cpld_control.nml.IN index f4df6e193b..6e7b7cc3ed 100644 --- a/tests/parm/cpld_control.nml.IN +++ b/tests/parm/cpld_control.nml.IN @@ -229,6 +229,7 @@ deflate_level=1 cplice = @[CPLICE] cplwav = @[CPLWAV] cplwav2atm = @[CPLWAV2ATM] + cpllnd = @[CPLLND] do_ca = @[DO_CA] ca_global = @[CA_GLOBAL] ca_sgs = @[CA_SGS] diff --git a/tests/parm/datm.streams.multi.IN b/tests/parm/datm.streams.multi.IN new file mode 100644 index 0000000000..0132b50cea --- /dev/null +++ b/tests/parm/datm.streams.multi.IN @@ -0,0 +1,61 @@ +stream_info: CLMGSWP3v1.Solar01 CLMGSWP3v1.Precip02 CLMGSWP3v1.TPQW03 topo.observed04 + +taxmode01: limit +mapalgo01: bilinear +tInterpAlgo01: coszen +readMode01: single +dtlimit01: 1.5 +stream_offset01: 0 +yearFirst01: @[SDATE] +yearLast01: @[EDATE] +yearAlign01: @[SDATE] +stream_vectors01: null +stream_mesh_file01: @[MESH_ATM_DATA] +stream_lev_dimname01: null +stream_data_files01: @[DATA_ATM01] +stream_data_variables01: "FSDS Faxa_swdn" + +taxmode02: limit +mapalgo02: bilinear +tInterpAlgo02: nearest +readMode02: single +dtlimit02: 1.5 +stream_offset02: 0 +yearFirst02: @[SDATE] +yearLast02: @[EDATE] +yearAlign02: @[SDATE] +stream_vectors02: null +stream_mesh_file02: @[MESH_ATM_DATA] +stream_lev_dimname02: null +stream_data_files02: @[DATA_ATM02] +stream_data_variables02: "PRECTmms Faxa_precn" + +taxmode03: limit +mapalgo03: bilinear +tInterpAlgo03: linear +readMode03: single +dtlimit03: 1.5 +stream_offset03: 0 +yearFirst03: @[SDATE] +yearLast03: @[EDATE] +yearAlign03: @[SDATE] +stream_vectors03: null +stream_mesh_file03: @[MESH_ATM_DATA] +stream_lev_dimname03: null +stream_data_files03: @[DATA_ATM03] +stream_data_variables03: "TBOT Sa_tbot" "WIND Sa_wind" "QBOT Sa_shum" "PSRF Sa_pbot" "PSRF Sa_pslv" "FLDS Faxa_lwdn" + +taxmode04: cycle +mapalgo04: bilinear +tInterpAlgo04: lower +readMode04: single +dtlimit04: 1.5 +stream_offset04: 0 +yearFirst04: 1 +yearLast04: 1 +yearAlign04: 1 +stream_vectors04: null +stream_mesh_file04: @[MESH_ATM_TOPO] +stream_lev_dimname04: null +stream_data_files04: @[DATA_ATM04] +stream_data_variables04: "TOPO Sa_topo" diff --git a/tests/parm/fd_nems.yaml b/tests/parm/fd_nems.yaml index 066a1afcdf..0a58e396ef 100644 --- a/tests/parm/fd_nems.yaml +++ b/tests/parm/fd_nems.yaml @@ -37,6 +37,10 @@ canonical_units: kg m-2 s-1 description: atmosphere export # + - standard_name: Faxa_ocph + canonical_units: kg m-2 s-1 + description: atmosphere export + # - standard_name: Faxa_dstdry canonical_units: kg m-2 s-1 description: atmosphere export @@ -65,6 +69,7 @@ description: atmosphere export # - standard_name: Faxa_rainc + alias: mean_prec_rate_conv canonical_units: kg m-2 s-1 description: atmosphere export # @@ -120,6 +125,11 @@ canonical_units: Pa description: atmosphere export - pressure at lowest model layer # + - standard_name: Sa_prsl + alias: inst_pres_height_lowest_from_phys + canonical_units: Pa + description: atmosphere export - pressure at lowest model layer + # - standard_name: Sa_pslv alias: inst_pres_height_surface canonical_units: Pa @@ -134,6 +144,11 @@ canonical_units: kg kg-1 description: atmosphere export - bottom layer specific humidity # + - standard_name: Sa_qa + alias: inst_spec_humid_height_lowest_from_phys + canonical_units: kg kg-1 + description: atmosphere export - bottom layer specific humidity + # - standard_name: Sa_tbot alias: inst_temp_height_lowest canonical_units: K @@ -146,6 +161,11 @@ canonical_units: K description: atmosphere export - sea surface skin temperature # + - standard_name: Sa_ta + alias: inst_temp_height_lowest_from_phys + canonical_units: K + description: atmosphere export - bottom layer temperature + # - standard_name: Sa_u alias: inst_zonal_wind_height_lowest canonical_units: m s-1 @@ -156,6 +176,16 @@ canonical_units: m s-1 description: atmosphere export - bottom layer meridional wind # + - standard_name: Sa_ua + alias: inst_zonal_wind_height_lowest_from_phys + canonical_units: m s-1 + description: atmosphere export - bottom layer zonal wind + # + - standard_name: Sa_va + alias: inst_merid_wind_height_lowest_from_phys + canonical_units: m s-1 + description: atmosphere export - bottom layer meridional wind + # - standard_name: Sa_wspd alias: inst_wind_speed_height_lowest canonical_units: m s-1 @@ -273,6 +303,16 @@ canonical_units: m description: orography # + - standard_name: Sa_exner + alias: inst_exner_function_height_lowest + canonical_units: 1 + description: dimensionless exner function at surface adjacent layer + # + - standard_name: Sa_ustar + alias: surface_friction_velocity + canonical_units: m s-1 + description: surface friction velocity + # #----------------------------------- # section: sea-ice export #----------------------------------- @@ -1065,6 +1105,32 @@ canonical_units: K description: two meter temperature # + #----------------------------------- + # section: land export + #----------------------------------- + # + - standard_name: Sl_lfrac + canonical_units: 1 + description: land export + # + - standard_name: Sl_lfrin + canonical_units: 1 + description: land export + # + - standard_name: Sl_t + canonical_units: K + description: land export + # - standard_name: inst_tracer_diag_aod canonical_units: 1 description: AOD + # + - standard_name: Fall_lat + alias: mean_laten_heat_flx_lnd_to_atm + canonical_units: W m-2 + description: land export to atm - atm/lnd latent heat flux + # + - standard_name: Fall_sen + alias: mean_sensi_heat_flx_lnd_to_atm + canonical_units: W m-2 + description: land export to atm - atm/lnd sensible heat flux diff --git a/tests/parm/nems.configure.atm_lnd.IN b/tests/parm/nems.configure.atm_lnd.IN new file mode 100644 index 0000000000..391f4008ad --- /dev/null +++ b/tests/parm/nems.configure.atm_lnd.IN @@ -0,0 +1,119 @@ +############################################# +#### NEMS Run-Time Configuration File ##### +############################################# + +# EARTH # +EARTH_component_list: MED ATM LND +EARTH_attributes:: + Verbosity = 0 +:: + +# MED # +MED_model: @[med_model] +MED_petlist_bounds: @[med_petlist_bounds] +MED_attributes:: + Verbosity = 1 + Diagnostic = 0 + ATM_model = @[atm_model] + LND_model = @[lnd_model] + MED_model = cmeps + history_n = 6 + history_option = nhours + history_ymd = -999 + coupling_mode = @[CPLMODE] + history_tile_lnd = 96 + history_n_lnd_inst = 6 + history_option_lnd_inst = nhours +:: + +# ATM # +ATM_model: @[atm_model] +ATM_petlist_bounds: @[atm_petlist_bounds] +ATM_attributes:: + Verbosity = 0 + Diagnostic = 0 +:: + +# LND # +LND_model: @[lnd_model] +LND_petlist_bounds: @[lnd_petlist_bounds] +LND_attributes:: + Verbosity = 1 + Diagnostic = 0 + mosaic_file = @[mosaic_file] + input_dir = INPUT/ + ic_type = @[lnd_ic_type] + layout = @[layout_x]:@[layout_y] # need to be consistent with number of PEs + num_soil_levels = 4 + forcing_height = 10 + soil_level_thickness = 0.10:0.30:0.60:1.00 + soil_level_nodes = 0.05:0.25:0.70:1.50 + dynamic_vegetation_option = 4 + canopy_stomatal_resistance_option = 2 + soil_wetness_option = 1 + runoff_option = 1 + surface_exchange_option = 3 + supercooled_soilwater_option = 1 + frozen_soil_adjust_option = 1 + radiative_transfer_option = 3 + snow_albedo_option = 1 + precip_partition_option = 4 + soil_temp_lower_bdy_option = 2 + soil_temp_time_scheme_option = 3 + surface_evap_resistance_option = 1 # not used, it is fixed to 4 in sfc_noahmp_drv.F90 + glacier_option = 1 + surface_thermal_roughness_option = 2 + output_freq = 10800 + calc_snet = @[CALC_SNET] +:: + +# cold +runSeq:: +@@[coupling_interval_sec] + MED med_phases_prep_atm + MED -> ATM :remapMethod=redist + ATM + ATM -> MED :remapMethod=redist + MED med_phases_post_atm + MED med_phases_prep_lnd + MED -> LND :remapMethod=redist + LND + LND -> MED :remapMethod=redist + MED med_phases_post_lnd + MED med_phases_restart_write + MED med_phases_history_write +@ +:: + +# Other Attributes # +DRIVER_attributes:: +:: + +ALLCOMP_attributes:: + ScalarFieldCount = 3 + ScalarFieldIdxGridNX = 1 + ScalarFieldIdxGridNY = 2 + ScalarFieldIdxNextSwCday = 3 # required for data atmosphere configurations + ScalarFieldName = cpl_scalars + start_type = @[RUNTYPE] + restart_dir = RESTART/ + case_name = ufs.cpld + restart_n = 12 + restart_option = nhours + restart_ymd = -999 + dbug_flag = 0 + use_coldstart = false + use_mommesh = true + eps_imesh = 2.5e-1 + orb_eccen = 1.e36 + orb_iyear = 2000 + orb_iyear_align = 2000 + orb_mode = fixed_year + orb_mvelp = 1.e36 + orb_obliq = 1.e36 + stop_n = @[FHMAX] + stop_option = nhours + stop_ymd = -999 + read_restart = @[READRESTART] + mediator_present = true +:: diff --git a/tests/rt.conf b/tests/rt.conf index 52f65c3585..183ff63044 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -242,6 +242,21 @@ RUN | datm_cdeps_gfs COMPILE | -DAPP=NG-GODAS -DDEBUG=ON | - wcoss2.intel acorn.intel | fv3 | RUN | datm_cdeps_debug_cfsr | - wcoss2.intel acorn.intel | fv3 | +################################################################################################################################################################################### +# CDEPS Data Atmosphere tests with LND # +################################################################################################################################################################################### + +COMPILE | -DAPP=LND | - wcoss2.intel | fv3 | +RUN | datm_cdeps_lnd_gswp3 | - wcoss2.intel | fv3 | +RUN | datm_cdeps_lnd_gswp3_rst | - wcoss2.intel | | datm_cdeps_lnd_gswp3 + +################################################################################################################################################################################### +# ATM-LND tests, -D32BIT=ON has issue and NoahMP reuires r8 libraries # +################################################################################################################################################################################### + +COMPILE | -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km | | fv3 | +RUN | control_p8_atmlnd_sbs | | fv3 | + ################################################################################################################################################################################### # ATM-WAV tests # ################################################################################################################################################################################### diff --git a/tests/rt.sh b/tests/rt.sh index 07e93fba2e..d1417ecdec 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -443,7 +443,7 @@ if [[ $TESTS_FILE =~ '35d' ]] || [[ $TESTS_FILE =~ 'weekly' ]]; then TEST_35D=true fi -BL_DATE=20221024 +BL_DATE=20221026 RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-${BL_DATE}/${RT_COMPILER^^}} diff --git a/tests/rt_utils.sh b/tests/rt_utils.sh index c049031af4..be98d44cbc 100755 --- a/tests/rt_utils.sh +++ b/tests/rt_utils.sh @@ -69,6 +69,12 @@ function compute_petbounds_and_tasks() { # AQM aqm_petlist_bounds="0 $((ATM_compute_tasks - 1))" + # LND + if [[ ${LND_tasks:-0} -gt 0 ]]; then + lnd_petlist_bounds="${n} $((n + LND_tasks - 1))" + n=$((n + LND_tasks)) + fi + UFS_tasks=${n} echo "ATM_petlist_bounds: ${atm_petlist_bounds:-}" @@ -78,6 +84,7 @@ function compute_petbounds_and_tasks() { echo "CHM_petlist_bounds: ${chm_petlist_bounds:-}" echo "MED_petlist_bounds: ${med_petlist_bounds:-}" echo "AQM_petlist_bounds: ${aqm_petlist_bounds:-}" + echo "LND_petlist_bounds: ${lnd_petlist_bounds:-}" echo "UFS_tasks : ${UFS_tasks:-}" # TASKS is now set to UFS_TASKS diff --git a/tests/tests/control_p8_atmlnd_sbs b/tests/tests/control_p8_atmlnd_sbs new file mode 100644 index 0000000000..60c9418e5f --- /dev/null +++ b/tests/tests/control_p8_atmlnd_sbs @@ -0,0 +1,236 @@ +############################################################################### +# +# Global control test GFSv16 atmosphere-land only at C96L127, P8 configuration +# +############################################################################### + +export TEST_DESCR="Compare global control results with previous trunk version" + +export CNTL_DIR=control_p8_atmlnd_sbs + +export LIST_FILES="sfcf000.tile1.nc \ + sfcf000.tile2.nc + sfcf000.tile3.nc + sfcf000.tile4.nc + sfcf000.tile5.nc + sfcf000.tile6.nc + sfcf021.tile1.nc \ + sfcf021.tile2.nc \ + sfcf021.tile3.nc \ + sfcf021.tile4.nc \ + sfcf021.tile5.nc \ + sfcf021.tile6.nc \ + sfcf024.tile1.nc \ + sfcf024.tile2.nc \ + sfcf024.tile3.nc \ + sfcf024.tile4.nc \ + sfcf024.tile5.nc \ + sfcf024.tile6.nc \ + atmf000.tile1.nc \ + atmf000.tile2.nc \ + atmf000.tile3.nc \ + atmf000.tile4.nc \ + atmf000.tile5.nc \ + atmf000.tile6.nc \ + atmf021.tile1.nc \ + atmf021.tile2.nc \ + atmf021.tile3.nc \ + atmf021.tile4.nc \ + atmf021.tile5.nc \ + atmf021.tile6.nc \ + atmf024.tile1.nc \ + atmf024.tile2.nc \ + atmf024.tile3.nc \ + atmf024.tile4.nc \ + atmf024.tile5.nc \ + atmf024.tile6.nc \ + RESTART/coupler.res \ + RESTART/fv_core.res.nc \ + RESTART/fv_core.res.tile1.nc \ + RESTART/fv_core.res.tile2.nc \ + RESTART/fv_core.res.tile3.nc \ + RESTART/fv_core.res.tile4.nc \ + RESTART/fv_core.res.tile5.nc \ + RESTART/fv_core.res.tile6.nc \ + RESTART/fv_srf_wnd.res.tile1.nc \ + RESTART/fv_srf_wnd.res.tile2.nc \ + RESTART/fv_srf_wnd.res.tile3.nc \ + RESTART/fv_srf_wnd.res.tile4.nc \ + RESTART/fv_srf_wnd.res.tile5.nc \ + RESTART/fv_srf_wnd.res.tile6.nc \ + RESTART/fv_tracer.res.tile1.nc \ + RESTART/fv_tracer.res.tile2.nc \ + RESTART/fv_tracer.res.tile3.nc \ + RESTART/fv_tracer.res.tile4.nc \ + RESTART/fv_tracer.res.tile5.nc \ + RESTART/fv_tracer.res.tile6.nc \ + RESTART/phy_data.tile1.nc \ + RESTART/phy_data.tile2.nc \ + RESTART/phy_data.tile3.nc \ + RESTART/phy_data.tile4.nc \ + RESTART/phy_data.tile5.nc \ + RESTART/phy_data.tile6.nc \ + RESTART/sfc_data.tile1.nc \ + RESTART/sfc_data.tile2.nc \ + RESTART/sfc_data.tile3.nc \ + RESTART/sfc_data.tile4.nc \ + RESTART/sfc_data.tile5.nc \ + RESTART/sfc_data.tile6.nc \ + ufs.cpld.cpl.hi.lnd.2021-03-22-43200.nc \ + ufs.cpld.cpl.hi.lnd.2021-03-23-21600.nc \ + ufs.cpld.lnd.out.2021-03-22-43200.tile1.nc \ + ufs.cpld.lnd.out.2021-03-22-43200.tile2.nc \ + ufs.cpld.lnd.out.2021-03-22-43200.tile3.nc \ + ufs.cpld.lnd.out.2021-03-22-43200.tile4.nc \ + ufs.cpld.lnd.out.2021-03-22-43200.tile5.nc \ + ufs.cpld.lnd.out.2021-03-22-43200.tile6.nc \ + ufs.cpld.lnd.out.2021-03-23-21600.tile1.nc \ + ufs.cpld.lnd.out.2021-03-23-21600.tile2.nc \ + ufs.cpld.lnd.out.2021-03-23-21600.tile3.nc \ + ufs.cpld.lnd.out.2021-03-23-21600.tile4.nc \ + ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc \ + ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc" + +export_fv3 +export NPZ=127 +export NPZP=128 +export DT_ATMOS=720 +export DT_INNER=${DT_ATMOS} +export SYEAR=2021 +export SMONTH=03 +export SDAY=22 +export SHOUR=06 +export RESTART_INTERVAL="12 -1" +export OUTPUT_GRID='cubed_sphere_grid' +export WRITE_DOPOST=.false. +export OUTPUT_FH='0 21 24' + +# P7 default +export IALB=2 +export IEMS=2 +export LSM=2 +export IOPT_DVEG=4 +export IOPT_CRS=2 +export IOPT_RAD=3 +export IOPT_ALB=1 +export IOPT_STC=3 +# P8 +export IOPT_SFC=3 +export IOPT_TRS=2 + +# FV3 P7 settings +export D2_BG_K1=0.20 +export D2_BG_K2=0.04 +export PSM_BC=1 +# P8 +export DDDMP=0.1 + +# P7 Merra2 Aerosols & NSST +export USE_MERRA2=.true. +export IAER=1011 +export NSTF_NAME=2,1,0,0,0 + +export LHEATSTRG=.false. +export LSEASPRAY=.true. + +# P7 UGWP1 +export GWD_OPT=2 +export DO_UGWP_V1=.false. +export KNOB_UGWP_VERSION=0 +export KNOB_UGWP_NSLOPE=1 +export DO_UGWP_V0=.true. +export DO_GSL_DRAG_LS_BL=.false. +export DO_GSL_DRAG_SS=.true. +export DO_GSL_DRAG_TOFD=.false. +export DO_UGWP_V1_OROG_ONLY=.false. +export DO_UGWP_V0_NST_ONLY=.false. +export LDIAG_UGWP=.false. + +# P7 CA +export DO_CA=.true. +export CA_SGS=.true. +export CA_GLOBAL=.false. +export NCA=1 +export NCELLS=5 +export NLIVES=12 +export NTHRESH=18 +export NSEED=1 +export NFRACSEED=0.5 +export CA_TRIGGER=.true. +export NSPINUP=1 +export ISEED_CA=12345 + +# P7 settings +export TILEDFIX=.true. +export FNALBC="'INPUT/C96.snowfree_albedo.tileX.nc'" +export FNALBC2="'INPUT/C96.facsf.tileX.nc'" +export FNTG3C="'INPUT/C96.substrate_temperature.tileX.nc'" +export FNVEGC="'INPUT/C96.vegetation_greenness.tileX.nc'" +export FNVETC="'INPUT/C96.vegetation_type.tileX.nc'" +export FNSOTC="'INPUT/C96.soil_type.tileX.nc'" +export FNSMCC=${FNSMCC_control} +export FNMSKH=${FNMSKH_control} +export FNVMNC="'INPUT/C96.vegetation_greenness.tileX.nc'" +export FNVMXC="'INPUT/C96.vegetation_greenness.tileX.nc'" +export FNSLPC="'INPUT/C96.slope_type.tileX.nc'" +export FNABSC="'INPUT/C96.maximum_snow_albedo.tileX.nc'" +export LANDICE=".false." +export FSICL=0 +export FSICS=0 + +export IMP_PHYSICS=8 +export LGFDLMPRAD=.false. +export DO_SAT_ADJ=.false. +export DNATS=0 +export DZ_MIN=6 + +#required for NML.IN sharing +export MIN_SEAICE=0.15 +export FRAC_GRID=.true. +export MOM6_RESTART_SETTING=n +# P8 (not used for standalone) +export USE_CICE_ALB=.false. + +export WRITE_NSFLIP=.true. + +export FV3_RUN=control_run.IN +export CCPP_SUITE=FV3_GFS_v17_p8 +export FIELD_TABLE=field_table_thompson_noaero_tke +export DIAG_TABLE=diag_table_p8_template +# use same namelist for standalone,coupled P7 +export INPUT_NML=cpld_control.nml.IN + +# RRTMGP +export DO_RRTMGP=.false. +export DOGP_CLDOPTICS_LUT=.true. +export DOGP_LWSCAT=.true. +export DOGP_SGS_CNV=.true. + +if [[ $MACHINE_ID = cheyenne.* ]]; then + TPN=18 +fi + +export CPLLND=.true. + +export NEMS_CONFIGURE="nems.configure.atm_lnd.IN" +export med_model="cmeps" +export atm_model="fv3" +export lnd_model="noahmp" +export CPLMODE="nems_frac" +export RUNTYPE="startup" +export READRESTART=.false. +export TASKS=294 +export ATM_tasks=144 +export OCN_tasks=0 +export ICE_tasks=0 +export LND_tasks=144 +export lnd_ic_type='sfc' +export CALC_SNET=.false. +export layout_x=3 +export layout_y=8 +export mosaic_file="INPUT/grid_spec.nc" +export coupling_interval_sec=720 +export TOPOEDITS="" +# need for getting some files from coupled RT to fix land-sea mask inconsistency +# can be removed after fixing files for control_p8 +export OCNRES=100 diff --git a/tests/tests/datm_cdeps_lnd_gswp3 b/tests/tests/datm_cdeps_lnd_gswp3 new file mode 100644 index 0000000000..736242d17c --- /dev/null +++ b/tests/tests/datm_cdeps_lnd_gswp3 @@ -0,0 +1,58 @@ +# +# DATM_CDEPS_NOAHMP_GSWP test +# + +export TEST_DESCR="DATM_CDEPS_NOAHMP_GSWP3 - control " + +export CNTL_DIR="datm_cdeps_lnd_gswp3" + +export LIST_FILES="ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc \ + ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc \ + ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc \ + ufs.cpld.lnd.out.2000-01-02-00000.tile4.nc \ + ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc \ + ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc" + +export_datm_cdeps + +export SYEAR=2000 +export SMONTH=01 +export SDAY=01 +export SHOUR=00 + +export DATM_IN_CONFIGURE=datm_in +export MESH_ATM="INPUT_DATM/fv1.9x2.5_141008_ESMFmesh.nc" +export atm_datamode="CLMNCEP" +export ATM_NX_GLB=144 +export ATM_NY_GLB=96 + +export DATM_STREAM_CONFIGURE=datm.streams.multi.IN +export MESH_ATM_DATA="INPUT_DATM/clmforc.GSWP3.c2011.0.5x0.5.TPQWL.SCRIP.210520_ESMFmesh.nc" +export MESH_ATM_TOPO="INPUT_DATM/topodata_0.9x1.SCRIP.210520_ESMFmesh.nc" +export SDATE=1999 +export EDATE=2000 +export DATA_ATM01="\"INPUT_DATM/clmforc.GSWP3.c2011.0.5x0.5.Solr.1999-12.nc\" \"INPUT_DATM/clmforc.GSWP3.c2011.0.5x0.5.Solr.2000-01.nc\"" +export DATA_ATM02="\"INPUT_DATM/clmforc.GSWP3.c2011.0.5x0.5.Prec.1999-12.nc\" \"INPUT_DATM/clmforc.GSWP3.c2011.0.5x0.5.Prec.2000-01.nc\"" +export DATA_ATM03="\"INPUT_DATM/clmforc.GSWP3.c2011.0.5x0.5.TPQWL.1999-12.nc\" \"INPUT_DATM/clmforc.GSWP3.c2011.0.5x0.5.TPQWL.2000-01.nc\"" +export DATA_ATM04="\"INPUT_DATM/topodata_0.9x1.25_USGS_070110_stream_c151201.nc\"" + +export NEMS_CONFIGURE="nems.configure.atm_lnd.IN" +export med_model="cmeps" +export atm_model="datm" +export lnd_model="noahmp" +export CPLMODE="nems_orig_data" +export RUNTYPE="startup" +export READRESTART=.false. +export TASKS=288 +export ATM_compute_tasks=144 +export OCN_tasks=0 +export ICE_tasks=0 +export LND_tasks=144 +export lnd_ic_type='custom' +export CALC_SNET=.true. +export layout_x=3 +export layout_y=8 +export mosaic_file="INPUT/C96_mosaic.nc" +export coupling_interval_sec=3600 +export TOPOEDITS="" +export FV3_RUN="lnd_datm_cdeps_gswp.IN noahmp_run.IN" diff --git a/tests/tests/datm_cdeps_lnd_gswp3_rst b/tests/tests/datm_cdeps_lnd_gswp3_rst new file mode 100644 index 0000000000..a6a6afa898 --- /dev/null +++ b/tests/tests/datm_cdeps_lnd_gswp3_rst @@ -0,0 +1,63 @@ +# +# DATM_CDEPS_NOAHMP_GSWP test +# + +export TEST_DESCR="DATM_CDEPS_NOAHMP_GSWP3_RST - control restart" + +export CNTL_DIR="datm_cdeps_lnd_gswp3" + +export LIST_FILES="ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc \ + ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc \ + ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc \ + ufs.cpld.lnd.out.2000-01-02-00000.tile4.nc \ + ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc \ + ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc" + +export_datm_cdeps + +export SYEAR=2000 +export SMONTH=01 +export SDAY=01 +export SHOUR=12 +export FHMAX=12 +export FHROT=0 + +export DATM_IN_CONFIGURE=datm_in +export MESH_ATM="INPUT_DATM/fv1.9x2.5_141008_ESMFmesh.nc" +export atm_datamode="CLMNCEP" +export ATM_NX_GLB=144 +export ATM_NY_GLB=96 + +export DATM_STREAM_CONFIGURE=datm.streams.multi.IN +export MESH_ATM_DATA="INPUT_DATM/clmforc.GSWP3.c2011.0.5x0.5.TPQWL.SCRIP.210520_ESMFmesh.nc" +export MESH_ATM_TOPO="INPUT_DATM/topodata_0.9x1.SCRIP.210520_ESMFmesh.nc" +export SDATE=1999 +export EDATE=2000 +export DATA_ATM01="\"INPUT_DATM/clmforc.GSWP3.c2011.0.5x0.5.Solr.1999-12.nc\" \"INPUT_DATM/clmforc.GSWP3.c2011.0.5x0.5.Solr.2000-01.nc\"" +export DATA_ATM02="\"INPUT_DATM/clmforc.GSWP3.c2011.0.5x0.5.Prec.1999-12.nc\" \"INPUT_DATM/clmforc.GSWP3.c2011.0.5x0.5.Prec.2000-01.nc\"" +export DATA_ATM03="\"INPUT_DATM/clmforc.GSWP3.c2011.0.5x0.5.TPQWL.1999-12.nc\" \"INPUT_DATM/clmforc.GSWP3.c2011.0.5x0.5.TPQWL.2000-01.nc\"" +export DATA_ATM04="\"INPUT_DATM/topodata_0.9x1.25_USGS_070110_stream_c151201.nc\"" + +export NEMS_CONFIGURE="nems.configure.atm_lnd.IN" +export med_model="cmeps" +export atm_model="datm" +export lnd_model="noahmp" +export CPLMODE="nems_orig_data" +export RUNTYPE="continue" +export READRESTART=.false. +export TASKS=288 +export ATM_compute_tasks=144 +export OCN_tasks=0 +export ICE_tasks=0 +export LND_tasks=144 +export lnd_ic_type='custom' +export CALC_SNET=.true. +export layout_x=3 +export layout_y=8 +export mosaic_file="INPUT/C96_mosaic.nc" +export coupling_interval_sec=3600 +export TOPOEDITS="" +export WARM_START=.true. + +export RESTART_FILE_SUFFIX_SECS="${SYEAR}-${SMONTH}-${SDAY}-$(printf "%02d" $(( (${FHROT}+ ${SHOUR})*3600 )))" +export FV3_RUN="lnd_datm_cdeps_gswp.IN noahmp_run.IN"